aboutsummaryrefslogtreecommitdiffstats
path: root/python/.flake8
blob: f19fb7b16f9d330f92da1129ab0864361e9a41ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[flake8]
select = C,E,F,W,ANN
# ANN003 is annotation on, eg, **kwargs
# ANN101 is annotation on 'self'
# ANN204 is annotation on '__init__()'
# E265,E266 are restrictions on comments ('#')
# E501 is line-too-long, which we enforce with black
# W503,E203 are allowed by black
# TODO: additional ignores during prep for black reformatting
ignore = ANN003,ANN101,ANN204,E265,E266,E501,W503,E203,ANN001,ANN201,E251,E128,E302,E261,E241,E201,E202,E266,E124,E305,E225,W504,E123,E122,E125,E121,E129,E126,E712,W191,E101,F405,E711,E226,E231
#ignore = ANN003,ANN101,ANN204,E265,E266,E501,W503,E203
per-file-ignores =
    */__init__.py: F401
    tests/*.py: F401,F811,ANN201,ANN001,F403,F405
    tests/transform_csl.py: F401,F811,W291
exclude = .git,__pycache__,.venv
max-line-length = 96
# TODO: should reduce max-complexity
max-complexity = 50