diff options
author | Cody Hiar <codyfh@gmail.com> | 2017-03-15 15:19:56 -0600 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2017-03-15 15:19:56 -0600 |
commit | f525ddfa7b049df3afd3ba26aa930af8d9ec80aa (patch) | |
tree | 1e9dd4093d3c9eb583263873ff3974624799915f | |
parent | 50743304d9b42071bd7e53b96a964c8e07fdca1b (diff) |
Don't need to specify pep8, using flake8
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -58,8 +58,8 @@ ADD PEARish.xml /root/PEARish.xml # Install python linting and neovim plugin RUN python -m ensurepip -RUN pip install neovim jedi flake8 flake8-docstrings flake8-isort flake8-quotes pep8 pep8-naming pep257 isort -RUN pip3 install neovim jedi flake8 flake8-docstrings flake8-isort flake8-quotes pep8 pep8-naming pep257 isort +RUN pip install neovim jedi flake8 flake8-docstrings flake8-isort flake8-quotes pep8-naming pep257 isort +RUN pip3 install neovim jedi flake8 flake8-docstrings flake8-isort flake8-quotes pep8-naming pep257 isort # Add flake8 config ADD flake8 /root/.flake8 |