Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@
# set the same as 'black' uses
max-line-length = 88
# TODO mention the reasons why we ignore the following
# E203 slice notation whitespace
# E501 line length
# W503 line break before binary operator
# W504 line break after binary operator
# F841 local variable name is assigned to but never used
ignore = E203,E501,W503,W504,F841
# E203: slice notation whitespace
# E501: line length
# W503: line break before binary operator
# W504: line break after binary operator
# F841: local variable name is assigned to but never used
# E231: false positives from colon-format specifiers inside f-strings
# (we use format width/precision in test/perf strings, e.g. `{time:7.3f}`)
# W604: backticks used in docstrings for inline code examples; pyflakes
# warns about deprecated backtick usage but project keeps these docs.
ignore = E203,E231,E501,W503,W504,F841,W604
Loading