-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bot] synced file(s) with Wall-Brew-Co/rebroadcast (#113)
* [bot] synced local '.cljstyle' with remote 'sources/clojure/.cljstyle' Sourced from: https://github.com/Wall-Brew-Co/rebroadcast * [bot] synced local '.clj-kondo/config.edn' with remote 'sources/clojure/cljkondo/config.edn' Sourced from: https://github.com/Wall-Brew-Co/rebroadcast
- Loading branch information
1 parent
60fcc4f
commit fd7e9d5
Showing
2 changed files
with
49 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,44 @@ | ||
{:output {:pattern "::{{level}} file={{filename}},line={{row}},col={{col}}::{{message}}"} | ||
:linters {:aliased-namespace-symbol {:level :warning} | ||
:consistent-alias {:aliases {clojure.edn edn | ||
clojure.java.io io | ||
clojure.math math | ||
clojure.set set | ||
clojure.walk walk | ||
clojure.zip zip | ||
clojure.core.async async | ||
clojure.data.csv csv | ||
clojure.data.xml xml | ||
clojure.tools.cli cli | ||
clojure.java.shell sh | ||
clojure.pprint pp | ||
clojure.spec.alpha spec | ||
clojure.string str | ||
clojure.core.matrix mat | ||
clojure.tools.logging log | ||
clojure.core.reducers r}} | ||
:docstring-leading-trailing-whitespace {:level :warning} | ||
:keyword-binding {:level :warning} | ||
:main-without-gen-class {:level :warning} | ||
:missing-docstring {:level :warning} | ||
:namespace-name-mismatch {:level :warning} | ||
:reduce-without-init {:level :warning} | ||
:redundant-fn-wrapper {:level :warning} | ||
:refer {:level :warning | ||
:exclude #{clojure.test cljs.test doo.runner}} | ||
:refer-all {:exclude #{clojure.test}} | ||
:shadowed-var {:level :warning} | ||
:single-key-in {:level :warning} | ||
:unresolved-symbol {:exclude [(clojure.test/is [match?]) | ||
clojure.test.check.clojure-test/defspec]} | ||
:unsorted-required-namespaces {:level :warning} | ||
:used-underscored-binding {:level :warning} | ||
:unused-value {:level :warning}}} | ||
{:exclude-files ".clj-kondo/imports/.*" | ||
:output {:pattern "::{{level}} file={{filename}},line={{row}},col={{col}}::{{message}}"} | ||
:ns-groups [{:pattern "\\*\\.experimental\\.\\*" | ||
:name experimental-features} | ||
{:pattern "\\*\\.impl" | ||
:name implementation-only}] | ||
:linters {:aliased-namespace-symbol {:level :warning} | ||
:consistent-alias {:aliases {clojure.edn edn | ||
clojure.java.io io | ||
clojure.math math | ||
clojure.set set | ||
clojure.walk walk | ||
clojure.zip zip | ||
clojure.core.async async | ||
clojure.data.csv csv | ||
clojure.data.xml xml | ||
clojure.tools.cli cli | ||
clojure.java.shell sh | ||
clojure.pprint pp | ||
clojure.spec.alpha spec | ||
clojure.string str | ||
clojure.core.matrix mat | ||
clojure.tools.logging log | ||
clojure.core.reducers r}} | ||
:discouraged-var {clojure.core/read-string {:message "Use `clojure.edn/read-string` instead of `read-string`."}} | ||
:discouraged-namespace {experimental-features {:message "These functions are considered experimental and can break or change implementation in future releases."} | ||
implementation-only {:message "These functions are considered internal implementation details and are not part of their respective public api."}} | ||
:docstring-leading-trailing-whitespace {:level :warning} | ||
:keyword-binding {:level :warning} | ||
:main-without-gen-class {:level :warning} | ||
:missing-docstring {:level :warning} | ||
:namespace-name-mismatch {:level :warning} | ||
:reduce-without-init {:level :warning} | ||
:redundant-fn-wrapper {:level :warning} | ||
:refer {:level :warning | ||
:exclude #{clojure.test cljs.test doo.runner}} | ||
:refer-all {:exclude #{clojure.test}} | ||
:shadowed-var {:level :warning} | ||
:single-key-in {:level :warning} | ||
:unresolved-symbol {:exclude [(clojure.test/is [match?]) | ||
clojure.test.check.clojure-test/defspec]} | ||
:unsorted-required-namespaces {:level :warning} | ||
:used-underscored-binding {:level :warning} | ||
:unused-value {:level :warning}}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
{:files {:extensions #{"clj" "cljs" "cljc" "cljx" "edn"} | ||
:ignore #{"target" ".git" ".idea" ".vscode" "node_modules"}} | ||
:rules {:namespaces {:enabled? false}}} | ||
:ignore #{"target" ".git" ".idea" ".vscode" "node_modules" ".clj-kondo" ".calva" ".lsp"}} | ||
:rules {:namespaces {:enabled? false} | ||
:indentation {:indents {#"defspec" [[:inner 0]] | ||
#"defstate" [[:inner 0]] | ||
#"for-all" [[:inner 0]]}}}} |