EasyCV/.pre-commit-config.yaml

43 lines
1.3 KiB
YAML

repos:
- repo: https://github.com/PyCQA/flake8
rev: 3.8.3
hooks:
- id: flake8
exclude: easycv/thirdparty/|examples/
# - repo: https://github.com/asottile/seed-isort-config
# rev: v2.2.0
# hooks:
# - id: seed-isort-config
# exclude: easycv/thirdparty/
- repo: https://github.com/timothycrosley/isort
rev: 4.3.21
hooks:
- id: isort
exclude: easycv/thirdparty/|examples/|pai_jobs/
- repo: https://github.com/pre-commit/mirrors-yapf
rev: v0.30.0
hooks:
- id: yapf
exclude: easycv/thirdparty/|examples/
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.1.0
hooks:
- id: trailing-whitespace
exclude: easycv/thirdparty/
- id: check-yaml
exclude: easycv/thirdparty/
- id: end-of-file-fixer
exclude: easycv/thirdparty/|.git_bin_url|.git_bin_path
- id: requirements-txt-fixer
exclude: easycv/thirdparty/
- id: double-quote-string-fixer
exclude: easycv/thirdparty/
- id: check-merge-conflict
exclude: easycv/thirdparty/
- id: fix-encoding-pragma
exclude: easycv/thirdparty/
args: ["--remove"]
- id: mixed-line-ending
exclude: easycv/thirdparty/
args: ["--fix=lf"]