Skip to content

Commit

Permalink
Narrow cljstyle targets (#31)
Browse files Browse the repository at this point in the history
* Update tooling to more selectively target files

* Update CHANGELOG
  • Loading branch information
nnichols authored Mar 3, 2024
1 parent b6253ed commit 11c3abc
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ jobs:
reporter: github-pr-review
level: error
filter_mode: file
ignore: "litre,millilitre,litres,millilitres"
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Unlike other Wall Brew repositories, `rebroadcast` does not use semantic version
Since `rebroadcast` primarily supports automated actions and developer tooling, there is little to distinguish breaking changes and bug fixes.
That said, it is important to track the history of changes made to our CI/CD and documentation over time.

## 2024 March 3

* Update `.cljstyle` config to ignore commonly uncommitted directories (e.g. `node_modules`, `target`)
* Update Misspell to ignore alternative spellings of "liter" and "milliliter"
* Update `sealog` config to pretty print changelog entry source files

## 2024 February 19

* Add default configuration for [Sealog](https://github.com/Wall-Brew-Co/lein-sealog)
Expand Down
3 changes: 2 additions & 1 deletion sources/clojure/.cljstyle
Original file line number Diff line number Diff line change
@@ -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}}}
3 changes: 2 additions & 1 deletion sources/clojure/sealog/config.edn
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{:changelog-filename "CHANGELOG.md"
:changelog-entry-directory ".sealog/changes/"
:version-scheme :semver3}
:version-scheme :semver3
:pretty-print-edn? true}
2 changes: 2 additions & 0 deletions sources/github-actions/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 11c3abc

Please sign in to comment.