Skip to content

Commit

Permalink
[bot] synced file(s) with Wall-Brew-Co/rebroadcast (#4)
Browse files Browse the repository at this point in the history
* [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

* [Format] Auto-formatting

---------

Co-authored-by: WallBrewBot <[email protected]>
  • Loading branch information
WallBrewBot and WallBrewBot committed Sep 14, 2024
1 parent c4ad20a commit 233afd2
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 38 deletions.
80 changes: 44 additions & 36 deletions .clj-kondo/config.edn
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}}}
7 changes: 5 additions & 2 deletions .cljstyle
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]]}}}}
1 change: 1 addition & 0 deletions src/leiningen/bouncer.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
(:require [leiningen.core.main :as main]
[leiningen.sealog.api :as sealog]))


(defn bouncer
"Manage Leiningen plugins, the Wall Brew way."
[project & args]
Expand Down

0 comments on commit 233afd2

Please sign in to comment.