forked from fail2ban/fail2ban
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fail2ban:master' into crowdsec
- Loading branch information
Showing
145 changed files
with
3,173 additions
and
1,510 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,12 @@ | ||
[codespell] | ||
# THANKS - names | ||
skip = .git,*.pdf,*.svg,venv,.codespellrc,THANKS,*test*.log,logs | ||
check-hidden = true | ||
# Ignore all acronyms etc as plenty e.g. in fail2ban/server/strptime.py | ||
# Try to identify incomplete words which are part of a regex, hence having [] at the beginning | ||
# Ignore all urls as something with :// in it | ||
# Ignore all lines with codespell-ignore in them for pragma annotation | ||
ignore-regex = (\b([A-Z][A-Z][A-Z]+|gir\.st)\b)|\[[a-zA-Z]+\][a-z]+\b|[a-z]+://\S+|.*codespell-ignore.* | ||
# some oddly named variables, some names, etc | ||
# wee -- comes in regex etc for weeks | ||
ignore-words-list = assertIn,theis,timere,alls,wee,wight,ans,re-use |
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,22 @@ | ||
--- | ||
name: Codespell | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
codespell: | ||
name: Check for spelling errors | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Codespell | ||
uses: codespell-project/actions-codespell@v2 |
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 |
---|---|---|
|
@@ -10,3 +10,4 @@ htmlcov | |
__pycache__ | ||
.vagrant/ | ||
.idea/ | ||
.venv/ |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.