Skip to content

Commit

Permalink
chore: ignore flake8 trailing whitespace of doom
Browse files Browse the repository at this point in the history
  • Loading branch information
Guibod committed Feb 17, 2023
1 parent 380678b commit 3a1fb09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ disable=
C0114, # missing-module-docstring
C0115, # missing-class-docstring
C0116, # missing-function-docstring
W291, # trailing-whitespace is handled by black

[FORMAT]
good-names=i,j,k,ex,_,pk,x,y,n
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Config for tools that do not use pyproject.toml yet
[flake8]
max-line-length = 88
extend-ignore = E203
extend-ignore = E203,W291
exclude =
__pycache__,
.git,
Expand Down

0 comments on commit 3a1fb09

Please sign in to comment.