mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-09 21:04:17 +00:00
Add files to hooks.yaml
This commit is contained in:
parent
00dd44afec
commit
7c003425b3
1 changed files with 7 additions and 0 deletions
|
|
@ -3,33 +3,40 @@
|
||||||
description: This hook checks yaml files for parseable syntax.
|
description: This hook checks yaml files for parseable syntax.
|
||||||
entry: check-yaml
|
entry: check-yaml
|
||||||
language: python
|
language: python
|
||||||
|
files: \.(yaml|yml)$
|
||||||
- id: debug-statements
|
- id: debug-statements
|
||||||
name: Debug Statements (Python)
|
name: Debug Statements (Python)
|
||||||
description: This hook checks that debug statements (pdb, ipdb, pudb) are not imported on commit.
|
description: This hook checks that debug statements (pdb, ipdb, pudb) are not imported on commit.
|
||||||
entry: debug-statement-hook
|
entry: debug-statement-hook
|
||||||
language: python
|
language: python
|
||||||
|
files: \.py$
|
||||||
- id: end-of-file-fixer
|
- id: end-of-file-fixer
|
||||||
name: Fix End of Files
|
name: Fix End of Files
|
||||||
description: Ensures that a file is either empty, or ends with one newline.
|
description: Ensures that a file is either empty, or ends with one newline.
|
||||||
entry: end-of-file-fixer
|
entry: end-of-file-fixer
|
||||||
language: python
|
language: python
|
||||||
|
files: \.(js|rb|md|py|sh|txt|yaml|yml)$
|
||||||
- id: flake8
|
- id: flake8
|
||||||
name: Flake8
|
name: Flake8
|
||||||
description: This hook runs flake8.
|
description: This hook runs flake8.
|
||||||
entry: flake8
|
entry: flake8
|
||||||
language: python
|
language: python
|
||||||
|
files: \.py$
|
||||||
- id: name-tests-test
|
- id: name-tests-test
|
||||||
name: Tests should end in _test.py
|
name: Tests should end in _test.py
|
||||||
description: This verifies that test files are named correctly
|
description: This verifies that test files are named correctly
|
||||||
entry: name-tests-test
|
entry: name-tests-test
|
||||||
language: python
|
language: python
|
||||||
|
files: tests/.+\.py$
|
||||||
- id: pyflakes
|
- id: pyflakes
|
||||||
name: Pyflakes (DEPRECATED, use flake8)
|
name: Pyflakes (DEPRECATED, use flake8)
|
||||||
description: This hook runs pyflakes. (This is deprecated, use flake8).
|
description: This hook runs pyflakes. (This is deprecated, use flake8).
|
||||||
entry: pyflakes
|
entry: pyflakes
|
||||||
language: python
|
language: python
|
||||||
|
files: \.py$
|
||||||
- id: trailing-whitespace
|
- id: trailing-whitespace
|
||||||
name: Trim Trailing Whitespace
|
name: Trim Trailing Whitespace
|
||||||
description: This hook trims trailing whitespace.
|
description: This hook trims trailing whitespace.
|
||||||
entry: trailing-whitespace-fixer
|
entry: trailing-whitespace-fixer
|
||||||
language: python
|
language: python
|
||||||
|
files: \.(js|rb|md|py|sh|txt|yaml|yml)$
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue