Skip to content

Commit

Permalink
Configure flake8 for new black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
wch committed Feb 5, 2024
1 parent 5a416ec commit d069672
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,11 @@ console_scripts =
[flake8]
# E302: Expected 2 blank lines
# E501: Line too long
# E704: Multiple statements on one line (def)
# F403: 'from module import *' used; unable to detect undefined names
# F405: Name may be undefined, or defined from star imports
# W503: Line break occurred before a binary operator
ignore = E302, E501, F403, F405, W503
ignore = E302, E501, E704, F403, F405, W503
exclude = docs, .venv, _dev

[isort]
Expand Down

0 comments on commit d069672

Please sign in to comment.