all lower-case as requested

This commit is contained in:
Dennis Roche 2021-10-18 20:57:55 +08:00 committed by Anthony Sottile
parent cb02c5b460
commit ccaa20da8d

View file

@ -1,193 +1,193 @@
- id: check-added-large-files - id: check-added-large-files
name: Check for added large files name: check for added large files
description: Prevent giant files from being committed description: prevent giant files from being committed
entry: check-added-large-files entry: check-added-large-files
language: python language: python
- id: check-ast - id: check-ast
name: Check python ast name: check python ast
description: Simply check whether the files parse as valid python. description: simply check whether the files parse as valid python.
entry: check-ast entry: check-ast
language: python language: python
types: [python] types: [python]
- id: check-byte-order-marker - id: check-byte-order-marker
name: 'check BOM - deprecated: use fix-byte-order-marker' name: 'check BOM - deprecated: use fix-byte-order-marker'
description: forbid files which have a UTF-8 byte-order marker description: forbid files which have a utf-8 byte-order marker
entry: check-byte-order-marker entry: check-byte-order-marker
language: python language: python
types: [text] types: [text]
- id: check-builtin-literals - id: check-builtin-literals
name: Check builtin type constructor use name: check builtin type constructor use
description: Require literal syntax when initializing empty or zero Python builtin types. description: require literal syntax when initializing empty or zero python builtin types.
entry: check-builtin-literals entry: check-builtin-literals
language: python language: python
types: [python] types: [python]
- id: check-case-conflict - id: check-case-conflict
name: Check for case conflicts name: check for case conflicts
description: Check for files that would conflict in case-insensitive filesystems description: check for files that would conflict in case-insensitive filesystems
entry: check-case-conflict entry: check-case-conflict
language: python language: python
- id: check-docstring-first - id: check-docstring-first
name: Check docstring is first name: check docstring is first
description: Checks a common error of defining a docstring after code. description: checks a common error of defining a docstring after code.
entry: check-docstring-first entry: check-docstring-first
language: python language: python
types: [python] types: [python]
- id: check-executables-have-shebangs - id: check-executables-have-shebangs
name: Check that executables have shebangs name: check that executables have shebangs
description: Ensures that (non-binary) executables have a shebang. description: ensures that (non-binary) executables have a shebang.
entry: check-executables-have-shebangs entry: check-executables-have-shebangs
language: python language: python
types: [text, executable] types: [text, executable]
stages: [commit, push, manual] stages: [commit, push, manual]
- id: check-json - id: check-json
name: Check JSON name: check json
description: This hook checks json files for parseable syntax. description: this hook checks json files for parseable syntax.
entry: check-json entry: check-json
language: python language: python
types: [json] types: [json]
- id: check-shebang-scripts-are-executable - id: check-shebang-scripts-are-executable
name: Check that scripts with shebangs are executable name: check that scripts with shebangs are executable
description: Ensures that (non-binary) files with a shebang are executable. description: ensures that (non-binary) files with a shebang are executable.
entry: check-shebang-scripts-are-executable entry: check-shebang-scripts-are-executable
language: python language: python
types: [text] types: [text]
stages: [commit, push, manual] stages: [commit, push, manual]
- id: pretty-format-json - id: pretty-format-json
name: Pretty format JSON name: pretty format json
description: This hook sets a standard for formatting JSON files. description: this hook sets a standard for formatting json files.
entry: pretty-format-json entry: pretty-format-json
language: python language: python
types: [json] types: [json]
- id: check-merge-conflict - id: check-merge-conflict
name: Check for merge conflicts name: check for merge conflicts
description: Check for files that contain merge conflict strings. description: check for files that contain merge conflict strings.
entry: check-merge-conflict entry: check-merge-conflict
language: python language: python
types: [text] types: [text]
- id: check-symlinks - id: check-symlinks
name: Check for broken symlinks name: check for broken symlinks
description: Checks for symlinks which do not point to anything. description: checks for symlinks which do not point to anything.
entry: check-symlinks entry: check-symlinks
language: python language: python
types: [symlink] types: [symlink]
- id: check-toml - id: check-toml
name: Check Toml name: check toml
description: This hook checks toml files for parseable syntax. description: this hook checks toml files for parseable syntax.
entry: check-toml entry: check-toml
language: python language: python
types: [toml] types: [toml]
- id: check-vcs-permalinks - id: check-vcs-permalinks
name: Check vcs permalinks name: check vcs permalinks
description: Ensures that links to vcs websites are permalinks. description: ensures that links to vcs websites are permalinks.
entry: check-vcs-permalinks entry: check-vcs-permalinks
language: python language: python
types: [text] types: [text]
- id: check-xml - id: check-xml
name: Check Xml name: check xml
description: This hook checks xml files for parseable syntax. description: this hook checks xml files for parseable syntax.
entry: check-xml entry: check-xml
language: python language: python
types: [xml] types: [xml]
- id: check-yaml - id: check-yaml
name: Check Yaml name: check yaml
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
types: [yaml] types: [yaml]
- id: debug-statements - id: debug-statements
name: Debug Statements (Python) name: debug statements (python)
description: Check for debugger imports and py37+ `breakpoint()` calls in python source. description: check for debugger imports and py37+ `breakpoint()` calls in python source.
entry: debug-statement-hook entry: debug-statement-hook
language: python language: python
types: [python] types: [python]
- id: destroyed-symlinks - id: destroyed-symlinks
name: Detect Destroyed Symlinks name: detect destroyed symlinks
description: Detects symlinks which are changed to regular files with a content of a path which that symlink was pointing to. description: detects symlinks which are changed to regular files with a content of a path which that symlink was pointing to.
entry: destroyed-symlinks entry: destroyed-symlinks
language: python language: python
types: [file] types: [file]
- id: detect-aws-credentials - id: detect-aws-credentials
name: Detect AWS Credentials name: detect aws credentials
description: Detects *your* aws credentials from the aws cli credentials file description: detects *your* aws credentials from the aws cli credentials file
entry: detect-aws-credentials entry: detect-aws-credentials
language: python language: python
types: [text] types: [text]
- id: detect-private-key - id: detect-private-key
name: Detect Private Key name: detect private key
description: Detects the presence of private keys description: detects the presence of private keys
entry: detect-private-key entry: detect-private-key
language: python language: python
types: [text] types: [text]
- id: double-quote-string-fixer - id: double-quote-string-fixer
name: Fix double quoted strings name: fix double quoted strings
description: This hook replaces double quoted strings with single quoted strings description: this hook replaces double quoted strings with single quoted strings
entry: double-quote-string-fixer entry: double-quote-string-fixer
language: python language: python
types: [python] types: [python]
- 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
types: [text] types: [text]
stages: [commit, push, manual] stages: [commit, push, manual]
- id: file-contents-sorter - id: file-contents-sorter
name: File Contents Sorter name: file contents sorter
description: Sort the lines in specified files (defaults to alphabetical). You must provide list of target files as input in your .pre-commit-config.yaml file. description: sort the lines in specified files (defaults to alphabetical). you must provide list of target files as input in your .pre-commit-config.yaml file.
entry: file-contents-sorter entry: file-contents-sorter
language: python language: python
files: '^$' files: '^$'
- id: fix-byte-order-marker - id: fix-byte-order-marker
name: fix UTF-8 byte order marker name: fix utf-8 byte order marker
description: removes UTF-8 byte order marker description: removes utf-8 byte order marker
entry: fix-byte-order-marker entry: fix-byte-order-marker
language: python language: python
types: [text] types: [text]
- id: fix-encoding-pragma - id: fix-encoding-pragma
name: Fix python encoding pragma name: fix python encoding pragma
language: python language: python
entry: fix-encoding-pragma entry: fix-encoding-pragma
description: 'Add # -*- coding: utf-8 -*- to the top of python files' description: 'add # -*- coding: utf-8 -*- to the top of python files'
types: [python] types: [python]
- id: forbid-new-submodules - id: forbid-new-submodules
name: Forbid new submodules name: forbid new submodules
language: python language: python
entry: forbid-new-submodules entry: forbid-new-submodules
description: Prevent addition of new git submodules description: prevent addition of new git submodules
types: [directory] types: [directory]
- id: mixed-line-ending - id: mixed-line-ending
name: Mixed line ending name: mixed line ending
description: Replaces or checks mixed line ending description: replaces or checks mixed line ending
entry: mixed-line-ending entry: mixed-line-ending
language: python language: python
types: [text] types: [text]
- 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$ files: (^|/)tests/.+\.py$
- id: no-commit-to-branch - id: no-commit-to-branch
name: "Don't commit to branch" name: "don't commit to branch"
entry: no-commit-to-branch entry: no-commit-to-branch
language: python language: python
pass_filenames: false pass_filenames: false
always_run: true always_run: true
- id: requirements-txt-fixer - id: requirements-txt-fixer
name: Fix requirements.txt name: fix requirements.txt
description: Sorts entries in requirements.txt description: sorts entries in requirements.txt
entry: requirements-txt-fixer entry: requirements-txt-fixer
language: python language: python
files: requirements.*\.txt$ files: requirements.*\.txt$
- id: sort-simple-yaml - id: sort-simple-yaml
name: Sort simple YAML files name: sort simple yaml files
language: python language: python
entry: sort-simple-yaml entry: sort-simple-yaml
description: Sorts simple YAML files which consist only of top-level keys, preserving comments and blocks. description: sorts simple yaml files which consist only of top-level keys, preserving comments and blocks.
files: '^$' files: '^$'
- 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
types: [text] types: [text]