mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-03-30 10:16:54 +00:00
74 lines
2.4 KiB
YAML
74 lines
2.4 KiB
YAML
- id: autopep8-wrapper
|
|
name: autopep8 wrapper
|
|
description: Runs autopep8 over python source.
|
|
entry: autopep8-wrapper
|
|
language: python
|
|
files: \.py$
|
|
args: [-i]
|
|
- id: check-added-large-files
|
|
name: Check for added large files
|
|
description: Prevent giant files from being committed
|
|
entry: check-added-large-files
|
|
language: python
|
|
# Match all files
|
|
files: ''
|
|
- id: check-docstring-first
|
|
name: Check docstring is first
|
|
description: Checks a common error of defining a docstring after code.
|
|
entry: check-docstring-first
|
|
language: python
|
|
files: \.py$
|
|
- id: check-json
|
|
name: Check JSON
|
|
description: This hook checks json files for parseable syntax.
|
|
entry: check-json
|
|
language: python
|
|
files: \.json$
|
|
- id: check-yaml
|
|
name: Check Yaml
|
|
description: This hook checks yaml files for parseable syntax.
|
|
entry: check-yaml
|
|
language: python
|
|
files: \.(yaml|yml)$
|
|
- id: debug-statements
|
|
name: Debug Statements (Python)
|
|
description: This hook checks that debug statements (pdb, ipdb, pudb) are not imported on commit.
|
|
entry: debug-statement-hook
|
|
language: python
|
|
files: \.py$
|
|
- id: end-of-file-fixer
|
|
name: Fix End of Files
|
|
description: Ensures that a file is either empty, or ends with one newline.
|
|
entry: end-of-file-fixer
|
|
language: python
|
|
files: \.(html|erb|slim|haml|ejs|jade|js|coffee|json|rb|md|py|css|scss|less|sh|tmpl|txt|yaml|yml)$
|
|
- id: flake8
|
|
name: Flake8
|
|
description: This hook runs flake8.
|
|
entry: flake8
|
|
language: python
|
|
files: \.py$
|
|
- id: name-tests-test
|
|
name: Tests should end in _test.py
|
|
description: This verifies that test files are named correctly
|
|
entry: name-tests-test
|
|
language: python
|
|
files: tests/.+\.py$
|
|
- id: pyflakes
|
|
name: Pyflakes (DEPRECATED, use flake8)
|
|
description: This hook runs pyflakes. (This is deprecated, use flake8).
|
|
entry: pyflakes
|
|
language: python
|
|
files: \.py$
|
|
- id: requirements-txt-fixer
|
|
name: Fix requirements.txt
|
|
description: Sorts entries in requirements.txt
|
|
entry: requirements-txt-fixer
|
|
language: python
|
|
files: requirements.*\.txt$
|
|
- id: trailing-whitespace
|
|
name: Trim Trailing Whitespace
|
|
description: This hook trims trailing whitespace.
|
|
entry: trailing-whitespace-fixer
|
|
language: python
|
|
files: \.(html|erb|slim|haml|ejs|jade|js|coffee|json|rb|md|py|css|scss|less|sh|tmpl|txt|yaml|yml)$
|