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.
15 lines
448 B
15 lines
448 B
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v2.0.0
|
|
hooks:
|
|
- id: check-added-large-files
|
|
- id: end-of-file-fixer
|
|
- id: flake8
|
|
args: ['--config=setup.cfg']
|
|
language: python
|
|
types: [python]
|
|
additional_dependencies: [flake8>=3.6.0]
|
|
- id: trailing-whitespace
|