diff options
| -rw-r--r-- | .flake8 | 24 | 
1 files changed, 13 insertions, 11 deletions
| @@ -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 | 
