16 lines
460 B
YAML
16 lines
460 B
YAML
# Contains the pre-commit hooks for the repository
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v3.3.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
exclude: '.+\.(md|rst)'
|
|
- id: end-of-file-fixer
|
|
- id: check-executables-have-shebangs
|
|
- id: mixed-line-ending
|
|
args: ['-f=lf']
|
|
- repo: https://github.com/PyCQA/flake8
|
|
rev: 5.0.4
|
|
hooks:
|
|
- id: flake8
|
|
args: ['--tee', '--benchmark']
|