Skip to content

Commit fa03d6e

Browse files
committed
Fix codespell configuration to skip get-pip.py
- Added get-pip.py to codespell skip list in pyproject.toml - get-pip.py contains encoded binary data that triggers false positives - This resolves the codespell failures in pre-commit.ci Fixes pre-commit.ci failure with 100+ false positive spelling errors
1 parent 5a130f6 commit fa03d6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ lint.pylint.max-statements = 88 # default: 50
162162

163163
[tool.codespell]
164164
ignore-words-list = "3rt,abd,aer,ans,bitap,crate,damon,fo,followings,hist,iff,kwanza,manuel,mater,secant,som,sur,tim,toi,zar"
165-
skip = "./.*,*.json,*.lock,ciphers/prehistoric_men.txt,project_euler/problem_022/p022_names.txt,pyproject.toml,strings/dictionary.txt,strings/words.txt"
165+
skip = "./.*,*.json,*.lock,ciphers/prehistoric_men.txt,get-pip.py,project_euler/problem_022/p022_names.txt,pyproject.toml,strings/dictionary.txt,strings/words.txt"
166166

167167
[tool.pytest.ini_options]
168168
markers = [

0 commit comments

Comments
 (0)