Skip to content

Commit

Permalink
Flake8 updates (ultralytics#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher authored Dec 6, 2022
1 parent fbeeb5d commit 4799920
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
license_file = LICENSE
description_file = README.md


[tool:pytest]
norecursedirs =
.git
Expand All @@ -17,7 +16,6 @@ addopts =
--durations=25
--color=yes


[flake8]
max-line-length = 120
exclude = .tox,*.egg,build,temp
Expand All @@ -27,25 +25,23 @@ 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
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
Expand Down

0 comments on commit 4799920

Please sign in to comment.