diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2020-09-10 22:52:59 +0200 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2020-09-10 23:23:11 +0200 |
commit | 9ed9065e19dfcccecab04eba71bf557e91f2379c (patch) | |
tree | 03c0e78624a50eb5a07bbb1652c4a52d78310bb6 | |
parent | da73eb77b459f77ba3ca7ce1fd5632da40e3ae14 (diff) | |
download | pylint-git-9ed9065e19dfcccecab04eba71bf557e91f2379c.tar.gz |
Make tool from pre-commit coherent with tox -e formatting
-rw-r--r-- | .pre-commit-config.yaml | 6 | ||||
-rw-r--r-- | tox.ini | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f4ca3a0e4..5cfeb8796 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/ambv/black - rev: 19.10b0 + rev: 20.8b1 hooks: - id: black args: [--safe, --quiet] @@ -10,7 +10,7 @@ repos: hooks: - id: trailing-whitespace - id: end-of-file-fixer -- repo: https://github.com/pre-commit/mirrors-isort - rev: v4.3.21 +- repo: https://github.com/PyCQA/isort + rev: 5.5.2 hooks: - id: isort @@ -36,8 +36,8 @@ commands = [testenv:formatting] basepython = python3 deps = - black==19.10b0 - isort==5.4.2 + black==20.8b1 + isort==5.5.2 commands = black --check . --exclude="tests/functional/|tests/input|tests/extensions/data|tests/regrtest_data/|tests/data/|venv|astroid|.tox" isort . --check-only |