diff options
| author | jannfis <jann@mistrust.net> | 2020-08-12 09:31:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-12 09:31:58 +0200 |
| commit | 420ddf92b2476f3a822b9458dbbe2c47e7320c47 (patch) | |
| tree | a21a4bbf5d2ccac13b72fb7bbc3a144cd4b1d2d9 /.github | |
| parent | 7670c645c2f94117e3abe492f2ba02a65108b44b (diff) | |
refactor: Give env methods their own package (#43)
* Give env methods their own package
* Fix typo
* Ignore mocks for spelling - they're auto generated, we can't fix them
* More spelling exceptions
Diffstat (limited to '.github')
| -rw-r--r-- | .github/actions/spelling/allow.txt | 2 | ||||
| -rw-r--r-- | .github/actions/spelling/excludes.txt | 1 | ||||
| -rw-r--r-- | .github/workflows/spelling.yml | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/.github/actions/spelling/allow.txt b/.github/actions/spelling/allow.txt index bc88a97..494ead0 100644 --- a/.github/actions/spelling/allow.txt +++ b/.github/actions/spelling/allow.txt @@ -51,6 +51,7 @@ Errorf extldflags Fatalf filepath +FIXME fooalias Fprintf func @@ -117,6 +118,7 @@ nimage nimg nokia nolint +notastring omitempty otherimg otherparam diff --git a/.github/actions/spelling/excludes.txt b/.github/actions/spelling/excludes.txt index ae2d5ae..d066cfc 100644 --- a/.github/actions/spelling/excludes.txt +++ b/.github/actions/spelling/excludes.txt @@ -1,4 +1,5 @@ ^\.github/ ^go\.(?:sum|mod)$ +\/mocks\/ ignore$ \.png$ diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml index eec6e18..cf78c13 100644 --- a/.github/workflows/spelling.yml +++ b/.github/workflows/spelling.yml @@ -4,7 +4,7 @@ on: branches: - master - 'release-*' - pull_requests: + pull_request: branches: - master |
