diff options
author | Cody Hiar <codyfh@gmail.com> | 2017-02-09 20:26:26 -0700 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2017-02-09 20:26:26 -0700 |
commit | b6ec77fceb5d60a0750840e8d37686070e44d080 (patch) | |
tree | 27bce83b84433d1c43ee0be28100969813ebf6fb | |
parent | 4f74589a0c446dcf952f1a9e5fc421a237929e82 (diff) |
Adding flake8 config
-rw-r--r-- | Dockerfile | 3 | ||||
-rw-r--r-- | flake8 | 6 |
2 files changed, 9 insertions, 0 deletions
@@ -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' @@ -0,0 +1,6 @@ +[flake8] +exclude = + migrations, + __init__.py, + settings, + |