diff --git a/.cljstyle b/.cljstyle index 9c32ac9..910e1da 100644 --- a/.cljstyle +++ b/.cljstyle @@ -1,2 +1,3 @@ -{:files {:extensions #{"clj" "cljs" "cljc" "cljx" "edn"}} +{:files {:extensions #{"clj" "cljs" "cljc" "cljx" "edn"} + :ignore #{"target" ".git" ".idea" ".vscode" "node_modules"}} :rules {:namespaces {:enabled? false}}} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index fbf747c..13bd63b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,6 +19,8 @@ jobs: reporter: github-pr-review level: error filter_mode: file + ignore: "litre,millilitre,litres,millilitres" + # Brewing applications support both US and non-US English clj-kondo: runs-on: ubuntu-latest diff --git a/.sealog/config.edn b/.sealog/config.edn index cad0201..6a2fb61 100644 --- a/.sealog/config.edn +++ b/.sealog/config.edn @@ -1,3 +1,4 @@ {:changelog-filename "CHANGELOG.md" :changelog-entry-directory ".sealog/changes/" - :version-scheme :semver3} + :version-scheme :semver3 + :pretty-print-edn? true}