pre-commit: Add double-quote-string-fixer and isort for python files

This commit is contained in:
Fu Hanxi
2020-12-21 12:42:29 +08:00
parent 654d4b8d72
commit a4f2206d4c

View File

@@ -3,7 +3,7 @@
repos: repos:
- repo: https://github.com/pre-commit/pre-commit-hooks - repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.3.0 rev: v3.4.0
hooks: hooks:
- id: trailing-whitespace - id: trailing-whitespace
# note: whitespace exclusions use multiline regex, see https://pre-commit.com/#regular-expressions # note: whitespace exclusions use multiline regex, see https://pre-commit.com/#regular-expressions
@@ -26,11 +26,17 @@ repos:
files: 'tools/ci/executable-list.txt' files: 'tools/ci/executable-list.txt'
- id: mixed-line-ending - id: mixed-line-ending
args: ['-f=lf'] args: ['-f=lf']
- id: double-quote-string-fixer
- repo: https://gitlab.com/pycqa/flake8 - repo: https://gitlab.com/pycqa/flake8
rev: 3.8.4 rev: 3.8.4
hooks: hooks:
- id: flake8 - id: flake8
args: ['--config=.flake8', '--tee', '--benchmark'] args: ['--config=.flake8', '--tee', '--benchmark']
- repo: https://github.com/pycqa/isort
rev: 5.6.4
hooks:
- id: isort
name: isort (python)
- repo: local - repo: local
hooks: hooks:
- id: check-executables - id: check-executables