{"id":30044491,"url":"https://github.com/niyarin/scm-checker","last_synced_at":"2026-01-16T06:58:25.192Z","repository":{"id":306626898,"uuid":"1025290709","full_name":"niyarin/scm-checker","owner":"niyarin","description":"(WIP) Code checker for Scheme","archived":false,"fork":false,"pushed_at":"2025-08-05T03:01:48.000Z","size":59,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-05T04:10:02.030Z","etag":null,"topics":["linter","scheme","scheme-tools"],"latest_commit_sha":null,"homepage":"","language":"Scheme","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/niyarin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-24T03:29:20.000Z","updated_at":"2025-08-05T03:01:51.000Z","dependencies_parsed_at":"2025-07-26T21:36:19.598Z","dependency_job_id":null,"html_url":"https://github.com/niyarin/scm-checker","commit_stats":null,"previous_names":["niyarin/scm-checker"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/niyarin/scm-checker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niyarin%2Fscm-checker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niyarin%2Fscm-checker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niyarin%2Fscm-checker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niyarin%2Fscm-checker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/niyarin","download_url":"https://codeload.github.com/niyarin/scm-checker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/niyarin%2Fscm-checker/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269208810,"owners_count":24378740,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-07T02:00:09.698Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["linter","scheme","scheme-tools"],"created_at":"2025-08-07T06:18:50.871Z","updated_at":"2026-01-16T06:58:25.184Z","avatar_url":"https://github.com/niyarin.png","language":"Scheme","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Scm-checker\nLinter for (R7RS, R5RS, partially R6RS) Scheme.\n\n## usage\n\n```bash\n# Download the binary that matches your architecture and operating system.\nwget https://github.com/niyarin/scm-checker/releases/download/0.1.7/scm-checker-0.1.7-linux-x86_64 -O scm-checker\nchmod +x scm-checker\n\n# --long-output is optional.\nscm-checker --long-output ./test-resources/source1.scm\n\n# OUTPUT\n# ./test-resources/source1.scm:3:9:W:Duplicate import.\n# ((scheme base) (scheme write)) =\u003e\n# ./test-resources/source1.scm:7:6:W:Nested and.\n# (and (cons 3 4) (cons 100 200)) =\u003e\n# (cons 3 4)(cons 100 200)\n# ....\n```\n\n## Run from Docker\n```bash\ndocker run --rm -i niyarin/scm-checker:latest \u003c ./test-resources/source1.scm\n\n## OUTPUT\n#-:7:6:W:Nested and.\n#(and (cons 3 4) (cons 100 200)) =\u003e\n#(cons 3 4)(cons 100 200)\n# ...\n```\n\n## Run from Scheme interpreter\nIt has been confirmed to work on Guile 3.0, Gauche 0.9.15, Sagittarius 0.9.13, and Chicken 5.4.0.\n\n```bash\n# Run once.\ngit submodule update --init\n\ngosh -I ./src -I ./src/scheme-reader/ src/main.scm test-resources/source1.scm\n# sash -L ./src -L ./src/scheme-reader/ src/main.scm ./test-resources/source1.scm\n# guile --r7rs -L ./src -L ./src/scheme-reader/ src/main.scm  test-resources/source1.scm\n\n# OUTPUT\n# test-resources/source1.scm:3:9:W:Duplicate import.\n# test-resources/source1.scm:6:1:W:Use case.\n```\n\n## Native build\n```bash\ngit submodule update --init\nchicken-install r7rs\nchicken-install srfi-113\nmake\n```\n\n## Usage Extensions\n### Vim\nYou can use this software with [dense-analysis/ale](https://github.com/dense-analysis/ale) in Vim for on-the-fly linting.\nJust use it together with the provided config file:  [misc/ale_linters/scm_checker.vim](https://github.com/niyarin/scm-checker/blob/main/misc/ale_linters/scm_checker.vim)\nCopy it to your ALE linters directory or load it via your Vim config.\nMake sure the compiled binary of this software is placed somewhere in your $PATH, so ALE can invoke it properly.\n\n### Github Actions\nBy using [niyarin/scm-checker-action](https://github.com/niyarin/scm-checker-action), you can use this application with GitHub Actions.\n\n## License\n[MIT](https://github.com/niyarin/scm-checker/blob/main/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fniyarin%2Fscm-checker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fniyarin%2Fscm-checker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fniyarin%2Fscm-checker/lists"}