Skip to content

Commit

Permalink
Update .flake8
Browse files Browse the repository at this point in the history
Co-authored-by: Alexander Kozlovsky <[email protected]>
  • Loading branch information
drew2a and kozlovsky authored Mar 29, 2022
1 parent 6e6e282 commit 541672c
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
[flake8]
max-line-length = 120
ignore=E127, E128, E131, E731, E722, E501, F401, F841, F722 , I202
extend-ignore =
I202, # Additional newline in a group of imports
E127, # continuation line over-indented for visual indent
E128, # continuation line under-indented for visual indent
E131, # continuation line unaligned for hanging indent
F722, # syntax error in forward annotation '20s'
E731, # do not assign a lambda expression, use a def
F401, # Pylint-checked, module imported but unused
F841, # Pylint-checked, local variable is assigned to but never used
E722, # Pylint-checked, do not use bare 'except'
E501 # Pylint-checked, line too long
import-order-style=pycharm

0 comments on commit 541672c

Please sign in to comment.