.flake8 318 Bytes
Newer Older
1
[flake8]
mayp777's avatar
UPDATE  
mayp777 committed
2
3
# Note: it's recommended to use `pre-commit run -a flake8`

4
max-line-length = 120
mayp777's avatar
UPDATE  
mayp777 committed
5
6
7
8
9
10
11
12
ignore = E203,E402,E741,W503

# Note: exclude is not honnored when flake8 is executed from pre-commit.
# pre-commit has a separate config
exclude = build,docs/src,third_party

per-file-ignores =
  examples/tutorials/*.py: E501