diff options
author | Cody Hiar <codyfh@gmail.com> | 2018-03-21 11:28:19 -0600 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2018-03-21 11:28:19 -0600 |
commit | c4e32712d5c9826a9a3d9a91ea974b276bb9911a (patch) | |
tree | 285adf648084d8930cb19d83e9f56c39aad6152e | |
parent | 19d088005a15cea28dffc4ef0694cc759e0fd27e (diff) |
Adding flak8 plugins
-rw-r--r-- | Dockerfile | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -27,6 +27,9 @@ RUN apt-get update && apt-get install -y \ ranger \ ack-grep \ sqlite3 \ + # For python crypto libraries + libssl-dev \ + libffi-dev \ locales # Generally a good idea to have these, extensions sometimes need them @@ -71,8 +74,11 @@ ADD PEARish.xml /root/PEARish.xml ######################################## # Install python linting and neovim plugin -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 mypy ansible-lint +RUN pip install neovim jedi flake8 flake8-docstrings flake8-isort flake8-quotes +RUN pip install pep8-naming pep257 isort +RUN pip3 install neovim jedi flake8 flake8-docstrings flake8-isort flake8-quotes +RUN pip3 install pep8-naming pep257 isort mypy ansible-lint flake8-bugbear +RUN pip3 install flake8-commas flake8-comprehensions ######################################## |