This commit is contained in:
Devaev Maxim
2020-05-12 08:43:12 +03:00
parent 44d6288416
commit 55aa443d68
6 changed files with 133 additions and 0 deletions

9
linters/flake8.ini Normal file
View File

@@ -0,0 +1,9 @@
[flake8]
inline-quotes = double
max-line-length = 160
ignore = W503, E227, E241, E252, Q003
# W503 line break before binary operator
# E227 missing whitespace around bitwise or shift operator
# E241 multiple spaces after
# E252 missing whitespace around parameter equals
# Q003 Change outer quotes to avoid escaping inner quotes