{"id":16725889,"url":"https://github.com/severeoverfl0w/clojure-check","last_synced_at":"2025-04-10T10:23:45.837Z","repository":{"id":75579945,"uuid":"78931786","full_name":"SevereOverfl0w/clojure-check","owner":"SevereOverfl0w","description":" check, analyze and inspect Clojure/Script code via the nREPL","archived":false,"fork":false,"pushed_at":"2017-10-09T20:56:07.000Z","size":24,"stargazers_count":18,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-24T09:11:34.866Z","etag":null,"topics":["clojure","lint","neovim","vim"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SevereOverfl0w.png","metadata":{"files":{"readme":"README.adoc","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}},"created_at":"2017-01-14T09:39:43.000Z","updated_at":"2021-03-28T01:24:57.000Z","dependencies_parsed_at":"2023-06-06T23:45:29.278Z","dependency_job_id":null,"html_url":"https://github.com/SevereOverfl0w/clojure-check","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SevereOverfl0w%2Fclojure-check","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SevereOverfl0w%2Fclojure-check/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SevereOverfl0w%2Fclojure-check/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SevereOverfl0w%2Fclojure-check/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SevereOverfl0w","download_url":"https://codeload.github.com/SevereOverfl0w/clojure-check/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248199086,"owners_count":21063641,"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","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":["clojure","lint","neovim","vim"],"created_at":"2024-10-12T22:51:19.625Z","updated_at":"2025-04-10T10:23:45.818Z","avatar_url":"https://github.com/SevereOverfl0w.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"= Clojure Check: A command-line interface to checkers via nREPL\n\n== Rationale\n\nThis is a quicker alternative to `lein eastwood` or `lein kibit` when you already have an nREPL running. The main driver is to be able to refer this from Vim for tools like https://github.com/w0rp/ale[ALE]\n\n== Usage\n\n=== Downloading\n\nThere are pre-built binaries available in the https://github.com/SevereOverfl0w/clojure-check/releases[releases]. I sign all releases, so look for the Verified sign!\n\n=== Building\n\nI use https://github.com/Masterminds/glide[glide] to build this project.\n\nNOTE: I had to run `git config --global http.https://gopkg.in.followRedirects true` with the latest git.\n\n[source,shell]\n----\n$ glide install\n$ go build \u003c1\u003e\n----\n\u003c1\u003e Creates ./clojure-check\n\n=== CLI usage\n\nYou can get output from eastwood \u0026 kibit on a running nREPL via\n\n[source,shell]\n----\n$ ./output -nrepl localhost:33999 -namespace app.website -file - \u003c src/app/website.clj\u003c1\u003e\n$ ./output -nrepl localhost:33999 -namespace app.website -file src/app/website.clj\n----\n\u003c1\u003e Read from Stdin\n\n=== REPL setup\n\n[source,clojure]\n.~/.lein/profiles.clj\n----\n{:user\n {:dependencies\n  [[jonase/eastwood \"0.2.3\" :exclusions [org.clojure/clojure]]\n   [jonase/kibit \"0.1.3\" :exclusions [org.clojure/clojure]]]}}\n----\n\n[source,clojure]\n.~/.boot/profile.boot\n----\n;; OR merge this with your cider task\n(deftask linters \"Linter profile\"\n  []\n  (require 'boot.repl)\n  (swap! @(resolve 'boot.repl/*default-dependencies*)\n         concat '[[jonase/eastwood \"0.2.3\" :exclusions [org.clojure/clojure]]\n                  [jonase/kibit \"0.1.3\" :exclusions [org.clojure/clojure]])\n  identity)\n----\n\n== Editor integration\n\nInspired by http://ddg.gg/[fzf] I have included a plugin folder in this repo which allows easy integration with Vim. I welcome similar PRs for other editors.\n\n==== Vim - ALE\n\nThere is ALE integration available in this repo. It depends on Fireplace to find connection details.\n\n----\nPlug 'w0rp/ale'\nPlug 'SevereOverfl0w/clojure-check', {'do': './install'}\n----\n\n==== Vim - Neomake\n\nThere is Neomake integration available in this repo. It depends on Fireplace to find connection details.\n\n----\nPlug 'neomake/neomake'\nPlug 'SevereOverfl0w/clojure-check', {'do': './install'}\n\nlet g:neomake_clojure_enabled_makers = ['check']\n----\n\n==== Vim - makeprg\n\nIt's easy to integrate clojure-check with `:make` in Vim.\n\n----\nPlug 'SevereOverfl0w/clojure-check', {'do': './install'}\n----\n\nAs parameters are required for making with this CLI, I suggest you also include the `ClojureMake` wrapper for `:make` to automatically insert those args, or any similar usage of the same thing.\n\n.ftplugin/clojure.vim\n----\nlet \u0026makeprg=g:clojure_check_bin.' $* -file %'\ncommand! ClojureMake :execute ':make '.join(ClojureCheckArgs(bufnr('%')))\n----\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsevereoverfl0w%2Fclojure-check","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsevereoverfl0w%2Fclojure-check","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsevereoverfl0w%2Fclojure-check/lists"}