diff options
author | Cody Hiar <codyfh@gmail.com> | 2017-01-11 13:50:13 -0700 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2017-01-11 13:50:13 -0700 |
commit | b91052688ab02609f364b75a98a7f0c6788faf5e (patch) | |
tree | 258e33e7915ea74adfebc8c98d1f716ef73d1487 | |
parent | 4894ec4a92413f7d6fd2b43b9f137d86d3968cef (diff) |
Making isort part of environment
-rw-r--r-- | Dockerfile | 7 | ||||
-rw-r--r-- | isort.cfg | 2 |
2 files changed, 7 insertions, 2 deletions
@@ -53,8 +53,11 @@ 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 isort -RUN pip3 install neovim jedi flake8 flake8-docstrings flake8-import-order flake8-quotes pep8 pep8-naming pep257 isort +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 + +# Add isort config +ADD isort.cfg /root/.isort.cfg # Install nodejs linting # Install JS linting modules diff --git a/isort.cfg b/isort.cfg new file mode 100644 index 0000000..3874f75 --- /dev/null +++ b/isort.cfg @@ -0,0 +1,2 @@ +[settings] +not_skip=__init__.py |