sphinx/setup.cfg

24 lines
751 B
INI
Raw Normal View History

2015-03-07 00:45:43 -06:00
[flake8]
2016-12-24 06:03:41 -06:00
max-line-length = 95
ignore = E116,E241,E251,E741,W504,I101,B006,B023,SIM102,SIM103,SIM105,SIM110,SIM113,SIM114,SIM115,SIM117,SIM223,SIM300,SIM401,SIM904,SIM905,SIM907
2020-11-15 02:11:18 -06:00
exclude = .git,.tox,.venv,tests/roots/*,build/*,doc/_build/*,sphinx/search/*,doc/usage/extensions/example*.py
2018-01-27 10:52:16 -06:00
application-import-names = sphinx
import-order-style = smarkets
2020-11-15 02:11:18 -06:00
per-file-ignores =
tests/*: E501
[coverage:run]
branch = True
parallel = True
source = sphinx
[coverage:report]
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain if tests don't hit defensive assertion code:
raise NotImplementedError
# Don't complain if non-runnable code isn't run:
if __name__ == .__main__.:
ignore_errors = True