Fix inconsistent descriptions wording

This commit is contained in:
Iulian Onofrei 2021-07-27 09:19:00 +03:00 committed by GitHub
parent 5918791f4d
commit 808dce3fff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,29 +1,29 @@
- 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: Prevents 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 checks 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: Forbids 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: Requires 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: Checks 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
@ -41,7 +41,7 @@
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: Checks JSON files for parseable syntax.
entry: check-json entry: check-json
language: python language: python
types: [json] types: [json]
@ -54,13 +54,13 @@
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: 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: Checks for files that contain merge conflict strings.
entry: check-merge-conflict entry: check-merge-conflict
language: python language: python
types: [text] types: [text]
@ -72,7 +72,7 @@
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: Checks TOML files for parseable syntax.
entry: check-toml entry: check-toml
language: python language: python
types: [toml] types: [toml]
@ -84,19 +84,19 @@
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: 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: 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: Checks 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]
@ -120,7 +120,7 @@
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: 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]
@ -133,7 +133,7 @@
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: Sorts 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: '^$'
@ -145,13 +145,13 @@
types: [text] types: [text]
- id: fix-encoding-pragma - id: fix-encoding-pragma
name: Fix python encoding pragma name: Fix python encoding pragma
description: 'Add # -*- coding: utf-8 -*- to the top of python files.' description: 'Adds # -*- coding: utf-8 -*- to the top of python files.'
language: python language: python
entry: fix-encoding-pragma entry: fix-encoding-pragma
types: [python] types: [python]
- id: forbid-new-submodules - id: forbid-new-submodules
name: Forbid new submodules name: Forbid new submodules
description: Prevent addition of new git submodules. description: Prevents addition of new git submodules.
language: python language: python
entry: forbid-new-submodules entry: forbid-new-submodules
- id: mixed-line-ending - id: mixed-line-ending
@ -186,7 +186,7 @@
files: '^$' files: '^$'
- id: trailing-whitespace - id: trailing-whitespace
name: Trim trailing whitespace name: Trim trailing whitespace
description: This hook trims trailing whitespace. description: Trims trailing whitespace.
entry: trailing-whitespace-fixer entry: trailing-whitespace-fixer
language: python language: python
types: [text] types: [text]