summaryrefslogtreecommitdiff
path: root/testenv/linters/flake8.ini
blob: 768e0b8911e10f004b6086fb336ac84851afce51 (plain)
1
2
3
4
5
6
7
8
9
10
[flake8]
inline-quotes = double
max-line-length = 160
ignore = W503, E221, E227, E241, E252, Q003
# W503 line break before binary operator
# E221 multiple spaces before 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