-
Notifications
You must be signed in to change notification settings - Fork 452
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Alexander Kozlovsky <[email protected]>
- Loading branch information
Showing
1 changed file
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |