From b6ec77fceb5d60a0750840e8d37686070e44d080 Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Thu, 9 Feb 2017 20:26:26 -0700 Subject: Adding flake8 config --- Dockerfile | 3 +++ flake8 | 6 ++++++ 2 files changed, 9 insertions(+) create mode 100644 flake8 diff --git a/Dockerfile b/Dockerfile index ca17ad8..34fdceb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -59,6 +59,9 @@ RUN pip3 install neovim jedi flake8 flake8-docstrings flake8-isort flake8-quotes # Add isort config ADD isort.cfg /root/.isort.cfg +# Add flake8 config +ADD flake8 /root/.flake8 + # Install nodejs linting # Install JS linting modules # The reason for the version specifications is an 'Unmet peerDependancy error' diff --git a/flake8 b/flake8 new file mode 100644 index 0000000..da3e6f8 --- /dev/null +++ b/flake8 @@ -0,0 +1,6 @@ +[flake8] +exclude = + migrations, + __init__.py, + settings, + -- cgit v1.2.3