You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1018 B
46 lines
1018 B
3 years ago
|
repos:
|
||
|
- repo: local
|
||
|
hooks:
|
||
|
- id: yapf
|
||
|
name: yapf
|
||
|
entry: yapf
|
||
|
language: system
|
||
|
args: [-i, --style .style.yapf]
|
||
|
files: \.py$
|
||
|
|
||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||
|
rev: a11d9314b22d8f8c7556443875b731ef05965464
|
||
|
hooks:
|
||
|
- id: check-merge-conflict
|
||
|
- id: check-symlinks
|
||
|
- id: end-of-file-fixer
|
||
|
- id: trailing-whitespace
|
||
|
- id: detect-private-key
|
||
|
- id: check-symlinks
|
||
|
- id: check-added-large-files
|
||
|
|
||
|
- repo: https://github.com/pycqa/isort
|
||
|
rev: 5.8.0
|
||
|
hooks:
|
||
|
- id: isort
|
||
|
name: isort (python)
|
||
|
- id: isort
|
||
|
name: isort (cython)
|
||
|
types: [cython]
|
||
|
- id: isort
|
||
|
name: isort (pyi)
|
||
|
types: [pyi]
|
||
|
|
||
|
- repo: local
|
||
|
hooks:
|
||
|
- id: flake8
|
||
|
name: flake8
|
||
|
entry: flake8
|
||
|
language: system
|
||
|
args:
|
||
|
- --count
|
||
|
- --select=E9,F63,F7,F82
|
||
|
- --show-source
|
||
|
- --statistics
|
||
|
files: \.py$
|