diff options
author | Cody Hiar <codyfh@gmail.com> | 2016-12-02 10:28:18 -0700 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2016-12-02 10:28:18 -0700 |
commit | ced9fc8f7cd6bc10d223baeb66ec774c94383449 (patch) | |
tree | a4764276cf610a0b9b181a3705daf03c24ed4eb0 | |
parent | 44b67a6d5c0b4181f0bb1bdb45104611fdd03da3 (diff) |
Adding isort to the install for managing imports
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -53,8 +53,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-import-order flake8-quotes pep8 pep8-naming pep257 -RUN pip3 install neovim jedi flake8 flake8-docstrings flake8-import-order flake8-quotes pep8 pep8-naming pep257 +RUN pip install neovim jedi flake8 flake8-docstrings flake8-import-order flake8-quotes pep8 pep8-naming pep257 isort +RUN pip3 install neovim jedi flake8 flake8-docstrings flake8-import-order flake8-quotes pep8 pep8-naming pep257 isort # Install nodejs linting # Install JS linting modules |