@@ 2,25 2,21 @@
# Read more about `setup.cfg`:
# https://docs.python.org/3/distutils/configfile.html
-
[flake8]
# W503: https://github.com/python/black#line-breaks--binary-operators
# E203: https://github.com/psf/black#slices
-# max-line-lenght = 88 to conform with Black
+# These settings are compatible with Black
ignore = W503, E203
inline-quotes = double
max-line-length = 88
-max-complexity = 10
-exclude = .git,__pycache__,dist
-
[isort]
# https://github.com/timothycrosley/isort/wiki/isort-Settings
# See https://github.com/timothycrosley/isort#multi-line-output-modes
+# These settings are compatible with Black
include_trailing_comma = true
multi_line_output = 3
-
-
-[darglint]
-# These values should be placed inside `setup.cfg` in your repo:
-strictness = short
+force_grid_wrap = 0
+use_parentheses = True
+ensure_newline_before_comments = True
+line_length = 88