-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into compatibility-test
- Loading branch information
Showing
26 changed files
with
476 additions
and
70 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{:comment "The default configuration for Wall Brew projects." | ||
:project-rules {:license {:comment "https://github.com/Wall-Brew-Co/open-source?tab=readme-ov-file#licensing" | ||
:disabled false} | ||
:plugins {:disabled false | ||
:available-plugins [{:comment "https://github.com/Wall-Brew-Co/rebroadcast?tab=readme-ov-file#sealog-configuration" | ||
:plugin-name "com.wallbrew/lein-sealog" | ||
:plugin-version "1.6.0"} | ||
{:comment "https://github.com/Wall-Brew-Co/rebroadcast?tab=readme-ov-file#clj-kondo-configuration" | ||
:plugin-name "com.github.clj-kondo/lein-clj-kondo" | ||
:plugin-version "2024.08.29"} | ||
{:plugin-name "lein-cljsbuild", | ||
:plugin-version "1.1.8" | ||
:disabled true | ||
:reason "cljsbuild is only required for ClojureScript and cross-platform projects."} | ||
{:comment "https://github.com/Wall-Brew-Co/rebroadcast?tab=readme-ov-file#cljstyle-configuration" | ||
:plugin-name "mvxcvi/cljstyle" | ||
:plugin-version "0.16.630"}]}}} |
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]]}}}} |
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,11 +1,15 @@ | ||
# Proposed Changes | ||
|
||
Quickly describe your change and the rationale behind it. | ||
Please link to any relevant issues or discussions. | ||
|
||
- Additions: | ||
- Updates: | ||
- Deletions: | ||
|
||
## Pre-merge Checklist | ||
|
||
- [ ] Write + run tests | ||
- [ ] Read and agree to the Contribution Guidelines and Code of Conduct | ||
- [ ] Write new tests for the changed functionality | ||
- [ ] Update CHANGELOG and increment version | ||
- [ ] Update README and relevant documentation |
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
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
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
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
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
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
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
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,13 +1,17 @@ | ||
name: Linter | ||
on: [pull_request, workflow_dispatch] | ||
|
||
on: ["push", "workflow_dispatch", "pull_request"] | ||
|
||
jobs: | ||
spell-check: | ||
# This job requires the Wall Brew Bot Token, so it is only run on non-forked repositories | ||
if: github.repository_owner == 'Wall-Brew-Co' | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4.1.7 | ||
uses: actions/checkout@v4.2.0 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
|
||
|
@@ -23,11 +27,14 @@ jobs: | |
# Brewing applications support both US and non-US English | ||
|
||
clj-kondo: | ||
# This job requires the Wall Brew Bot Token, so it is only run on non-forked repositories | ||
if: github.repository_owner == 'Wall-Brew-Co' | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4.1.7 | ||
uses: actions/checkout@v4.2.0 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
|
||
|
@@ -44,12 +51,46 @@ jobs: | |
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4.1.7 | ||
uses: actions/checkout@v4.2.0 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
|
||
- name: Cache maven dependencies | ||
uses: actions/cache@v4 | ||
env: | ||
cache-name: cache-maven | ||
with: | ||
path: ~/.m2 | ||
save-always: true | ||
key: ${{ runner.os }}-clj-lint-sealog-${{ hashFiles('**/project.clj') }} | ||
restore-keys: | | ||
${{ runner.os }}-clj | ||
- name: Validate Sealog Entries | ||
run: lein sealog check | ||
|
||
bouncer: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/[email protected] | ||
with: | ||
ref: ${{ github.head_ref }} | ||
|
||
- name: Cache maven dependencies | ||
uses: actions/cache@v4 | ||
env: | ||
cache-name: cache-maven | ||
with: | ||
path: ~/.m2 | ||
save-always: true | ||
key: ${{ runner.os }}-clj-lint-bouncer-${{ hashFiles('**/project.clj') }} | ||
restore-keys: | | ||
${{ runner.os }}-clj | ||
- name: Validate Sealog Entries | ||
run: lein bouncer check | ||
|
||
# This file was automatically copied and populated by rebroadcast | ||
# Do not edit this file directly, instead modify the source at https://github.com/Wall-Brew-Co/rebroadcast/blob/master/sources/github-actions/workflows/lint.yml |
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
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
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
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{:version {:major 1 | ||
:minor 10 | ||
:patch 0} | ||
:version-type :semver3 | ||
:changes {:added [] | ||
:changed [] | ||
:deprecated [] | ||
:removed [] | ||
:fixed ["Updated the organization name in the POM file to `Wall Brew Co.`"] | ||
:security []} | ||
:timestamp "2024-09-20T16:41:55.023940098Z"} |
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
Validating CODEOWNERS rules …
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,2 +1,6 @@ | ||
# Barring any major exception, all Wall Brew Developers should be maintainers of any file | ||
* @Wall-Brew-Co/wall-brew-developers | ||
|
||
## This file was automatically copied and populated by rebroadcast | ||
|
||
## Do not edit this file directly, instead modify the source at <https://github.com/Wall-Brew-Co/rebroadcast/blob/master/sources/community/CODEOWNERS> |
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
Oops, something went wrong.