{"id":28415781,"url":"https://github.com/clj-kondo/configs","last_synced_at":"2025-08-03T20:43:10.724Z","repository":{"id":61917827,"uuid":"555760533","full_name":"clj-kondo/configs","owner":"clj-kondo","description":"Library configurations as dependencies for clj-kondo","archived":false,"fork":false,"pushed_at":"2024-10-16T10:01:34.000Z","size":32,"stargazers_count":14,"open_issues_count":4,"forks_count":3,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-06-04T03:25:57.845Z","etag":null,"topics":["clj-kondo","clojure"],"latest_commit_sha":null,"homepage":"","language":"Clojure","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/clj-kondo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-10-22T09:04:32.000Z","updated_at":"2025-03-15T14:31:14.000Z","dependencies_parsed_at":"2023-01-31T07:15:55.501Z","dependency_job_id":null,"html_url":"https://github.com/clj-kondo/configs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/clj-kondo/configs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clj-kondo%2Fconfigs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clj-kondo%2Fconfigs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clj-kondo%2Fconfigs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clj-kondo%2Fconfigs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/clj-kondo","download_url":"https://codeload.github.com/clj-kondo/configs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clj-kondo%2Fconfigs/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261930439,"owners_count":23231883,"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":["clj-kondo","clojure"],"created_at":"2025-06-03T19:21:33.509Z","updated_at":"2025-06-25T18:31:05.064Z","avatar_url":"https://github.com/clj-kondo.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Clj-kondo configs\n\nClj-kondo configurations for libraries, as dependencies.\n\n## Including configuration with your own libraries\n\nTo give users the best out of the box experience, it is preferred that\nconfigurations for libraries are part of those libraries proper. Read\n[here](https://github.com/clj-kondo/clj-kondo/blob/master/doc/config.md#exporting-and-importing-configuration)\nhow you can do that. Also see a list of projects\n[here](https://github.com/clj-kondo/clj-kondo/issues/1383) that are already\ncurrently doing that.\n\n## Gettings configurations from this repo\n\nYou can get configurations for your libraries, if they are available in this\nrepo, by adding dependencies to your `deps.edn` or `project.clj`. E.g. to add a\nconfiguration for Rum:\n\n``` clojure\n{:deps {io.github.clj-kondo/config-rum-rum {:mvn/version \"\u003cversion\u003e\"}}}\n```\n\nTo always get the newest version, you can use [neil](https://github.com/babashka/neil):\n\n```\nneil dep add io.github.clj-kondo/config-rum-rum\n```\n\nIf you don't already have a `.clj-kondo` directory, create one.\n\nWith the extra dependencies in place, you can run this:\n\n```\n$ clj-kondo --lint $(clojure -Spath) --dependencies --skip-lint --copy-configs\n```\n\nand clj-kondo will copy configurations from the dependencies to your local\n`.clj-kondo` directory. For leiningen, replace `clojure -Spath` with `lein\nclasspath`.\n\nIf you are using [clojure-lsp](https://github.com/clojure-lsp/clojure-lsp/) the\nabove will happen automatically.\n\nIt is fine to check those configurations into source control if you want to, so\neveryone who is linting your code with clj-kondo, will get to see the same\nresults.\n\n## Naming scheme\n\nLibraries in this repository reflect coordinate names in\n`deps.edn`. E.g. configuration for the [rum](https://github.com/tonsky/rum)\nlibrary is available in the `configs/rum/rum` library.\n\nThe configuration dependency on Clojars follows a similar scheme:\n\n``` clojure\n{:deps {io.github.clj-kondo/config-\u003corg\u003e-\u003clib\u003e {:mvn/version \"\u003cversion\u003e\"}}}\n```\n\n## Clojars dependency\n\nTo include a configuration in your `deps.edn` or `project.clj` as a Clojars dependency\n\n``` clojure\n{:deps {io.github.clj-kondo/config-rum-rum {:mvn/version \"\u003cversion\u003e\"}}}\n```\n\nReplace `\u003cversion\u003e` with the actual version you want to use.\n\n## Git dependency\n\nTo include a configuration in your `deps.edn` as a git dependency:\n\n``` clojure\n{:deps {io.github.clj-kondo/config-rum-rum\n        {:git/url \"https://github.com/clj-kondo/clj-kondo.configs\"\n         :git/sha \"\u003csha\u003e\"\n         :deps/root \"configs/rum/rum\"}}}\n```\n\nReplace `\u003csha\u003e` with the actual SHA you want to use.\n\nNote: `:deps/root` indicates which `deps.edn` in this repository to use.\nIt is valid to add this repository multiple times with different `:deps/root`s in your `deps.edn`.\n\n## License\n\nMIT, see `LICENSE`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclj-kondo%2Fconfigs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclj-kondo%2Fconfigs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclj-kondo%2Fconfigs/lists"}