|
|
|
@ -6,7 +6,6 @@
|
|
|
|
|
license_file = LICENSE
|
|
|
|
|
description_file = README.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[tool:pytest]
|
|
|
|
|
norecursedirs =
|
|
|
|
|
.git
|
|
|
|
@ -17,7 +16,6 @@ addopts =
|
|
|
|
|
--durations=25
|
|
|
|
|
--color=yes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[flake8]
|
|
|
|
|
max-line-length = 120
|
|
|
|
|
exclude = .tox,*.egg,build,temp
|
|
|
|
@ -27,17 +25,16 @@ verbose = 2
|
|
|
|
|
# https://pep8.readthedocs.io/en/latest/intro.html#error-codes
|
|
|
|
|
format = pylint
|
|
|
|
|
# see: https://www.flake8rules.com/
|
|
|
|
|
ignore =
|
|
|
|
|
E731 # Do not assign a lambda expression, use a def
|
|
|
|
|
F405 # name may be undefined, or defined from star imports: module
|
|
|
|
|
E402 # module level import not at top of file
|
|
|
|
|
F401 # module imported but unused
|
|
|
|
|
W504 # line break after binary operator
|
|
|
|
|
E127 # continuation line over-indented for visual indent
|
|
|
|
|
E231 # missing whitespace after ‘,’, ‘;’, or ‘:’
|
|
|
|
|
E501 # line too long
|
|
|
|
|
F403 # ‘from module import *’ used; unable to detect undefined names
|
|
|
|
|
|
|
|
|
|
ignore = E731,F405,E402,F401,W504,E127,E231,E501,F403
|
|
|
|
|
# E731: Do not assign a lambda expression, use a def
|
|
|
|
|
# F405: name may be undefined, or defined from star imports: module
|
|
|
|
|
# E402: module level import not at top of file
|
|
|
|
|
# F401: module imported but unused
|
|
|
|
|
# W504: line break after binary operator
|
|
|
|
|
# E127: continuation line over-indented for visual indent
|
|
|
|
|
# E231: missing whitespace after ‘,’, ‘;’, or ‘:’
|
|
|
|
|
# E501: line too long
|
|
|
|
|
# F403: ‘from module import *’ used; unable to detect undefined names
|
|
|
|
|
|
|
|
|
|
[isort]
|
|
|
|
|
# https://pycqa.github.io/isort/docs/configuration/options.html
|
|
|
|
@ -45,7 +42,6 @@ line_length = 120
|
|
|
|
|
# see: https://pycqa.github.io/isort/docs/configuration/multi_line_output_modes.html
|
|
|
|
|
multi_line_output = 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[yapf]
|
|
|
|
|
based_on_style = pep8
|
|
|
|
|
spaces_before_comment = 2
|
|
|
|
|