Skip to content

Commit

Permalink
syntax change for flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesBuchner committed Jul 13, 2023
1 parent 5ea9db2 commit 19d9184
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ max-line-length = 127
max-complexity = 10
avoid-escape=True
; This ignore differs than autopep8's ignore as to not autofix tabs to spaces, but still warn when mixed
; variable "hash" is shadowing a python builtin
; tabs are prefered indentation;
; Bug with pycodestyle for Python 2.7 where it thinks everything is over-indented with tabs
ignore=
A001, ; variable "hash" is shadowing a python builtin
W191,E111 ; tabs are prefered indentation;
E117 ; Bug with pycodestyle for Python 2.7 where it thinks everything is over-indented with tabs
A001,
W191,E111
E117
per-file-ignores=
; False positive with multiline strings https://github.com/PyCQA/pycodestyle/issues/376
find_similar_images.py: E101

0 comments on commit 19d9184

Please sign in to comment.