Files
sphinx/.flake8

32 lines
416 B
Plaintext
Raw Normal View History

2015-03-07 15:45:43 +09:00
[flake8]
2016-12-24 21:03:41 +09:00
max-line-length = 95
ignore =
E116,
E241,
E251,
E741,
W503,
W504,
I101,
SIM102,
SIM103,
SIM105,
SIM114,
SIM115,
SIM117,
SIM223,
SIM401,
SIM907,
SIM910,
exclude =
.git,
.tox,
.venv,
tests/roots/*,
build/*,
doc/_build/*,
sphinx/search/*,
doc/usage/extensions/example*.py,
2020-11-15 17:11:18 +09:00
per-file-ignores =
tests/*: E501