From e6eab7ec3943895d461edf662e9f875616da84fe Mon Sep 17 00:00:00 2001 From: Brad Solomon Date: Fri, 6 Sep 2019 16:19:21 -0400 Subject: [PATCH] Specify default flake8 configuration --- .flake8 | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .flake8 diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..ab0474e --- /dev/null +++ b/.flake8 @@ -0,0 +1,20 @@ +[flake8] +doctests = False +exclude = + .git, + .github/, + docs/, + doc/, + *.pyc, + __pycache__, + requirements/, + requirements.txt, + +max-line-length = 127 +hang-closing = False +max-complexity = 10 + +# Default flake8 formatting is '%(path)s:%(row)d:%(col)d: %(code)s %(text)s' +format = '%(path)s: row %(row)d: %(code)s %(text)s' + +