mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-12 12:00:03 -05:00
Fix patter for cli args
This commit is contained in:
parent
fa6bad1cd9
commit
50053383e0
4 changed files with 2 additions and 4 deletions
|
@ -3,7 +3,5 @@ nvq
|
||||||
rdoc
|
rdoc
|
||||||
setuptools
|
setuptools
|
||||||
uninstall
|
uninstall
|
||||||
Jv
|
|
||||||
wget
|
wget
|
||||||
WORKDIR
|
WORKDIR
|
||||||
xzf
|
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
aef
|
|
||||||
args
|
args
|
||||||
pid
|
pid
|
||||||
|
|
1
.github/actions/spelling/allow/words.txt
vendored
1
.github/actions/spelling/allow/words.txt
vendored
|
@ -68,7 +68,6 @@ lfs
|
||||||
libxml
|
libxml
|
||||||
linted
|
linted
|
||||||
linting
|
linting
|
||||||
Lk
|
|
||||||
loadbalancer
|
loadbalancer
|
||||||
localhost
|
localhost
|
||||||
loglevel
|
loglevel
|
||||||
|
|
2
.github/actions/spelling/patterns.txt
vendored
2
.github/actions/spelling/patterns.txt
vendored
|
@ -1,3 +1,5 @@
|
||||||
https?:\S*
|
https?:\S*
|
||||||
# ignore long runs of a single character:
|
# ignore long runs of a single character:
|
||||||
([A-Za-z])\1{3,}
|
([A-Za-z])\1{3,}
|
||||||
|
# Any CLI args (-xzf -aef)
|
||||||
|
\ -\w+\b
|
||||||
|
|
Loading…
Reference in a new issue