aboutsummaryrefslogtreecommitdiffstats
path: root/.flake8
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2021-01-09 13:18:32 -0800
committerGravatar MarkKoz <[email protected]>2021-01-09 19:15:49 -0800
commite0bd7ab0c95f5ff9e407faa8538395eb88ff9f9e (patch)
tree7593e8bac8de679edd1afdda246b92d4f2b81b76 /.flake8
parentAdd more pre-commit hooks (diff)
Re-arrange settings in .flake8 file
Diffstat (limited to '.flake8')
-rw-r--r--.flake824
1 files changed, 13 insertions, 11 deletions
diff --git a/.flake8 b/.flake8
index 7ebe432..d0f7459 100644
--- a/.flake8
+++ b/.flake8
@@ -1,9 +1,15 @@
[flake8]
-max-line-length=100
-application_import_names=snekbox
-docstring-convention=all
-ignore=
- P102,B311,W503,E226,S311,
+allow-untyped-nested = true
+application_import_names = snekbox
+docstring-convention = all
+import-order-style = pycharm
+inline-quotes = "
+max-line-length = 100
+
+exclude = __pycache__,.cache,user_base,venv,.venv
+
+ignore =
+ W503,
# Missing Docstrings
D100,D104,D105,D107,
# Docstring Whitespace
@@ -14,9 +20,5 @@ ignore=
D400,D401,D402,D404,D405,D406,D407,D408,D409,D410,D411,D412,D413,D414,D416,D417,
# Type Annotations
ANN002,ANN003,ANN101,ANN102,ANN204,ANN206
-exclude=
- __pycache__,.cache,
- venv,.venv,user_base
-per-file-ignores=tests/*:D1,ANN
-import-order-style=pycharm
-inline-quotes="
+
+per-file-ignores = tests/*:D1,ANN