2015-03-07 00:45:43 -06:00
|
|
|
[flake8]
|
2016-12-24 06:03:41 -06:00
|
|
|
max-line-length = 95
|
2022-09-20 15:30:31 -05:00
|
|
|
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
|
2017-02-24 12:39:51 -06:00
|
|
|
|
2017-10-21 09:52:46 -05:00
|
|
|
[coverage:run]
|
|
|
|
branch = True
|
2020-03-05 07:28:35 -06:00
|
|
|
parallel = True
|
2017-10-21 09:52:46 -05:00
|
|
|
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
|