mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-04 11:16:53 +00:00
Fix inconsistent descriptions wording
This commit is contained in:
parent
8a1d0fcbaa
commit
d7932b63a3
1 changed files with 17 additions and 17 deletions
|
|
@ -1,29 +1,29 @@
|
|||
- id: check-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
|
||||
language: python
|
||||
- id: check-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
|
||||
language: python
|
||||
types: [python]
|
||||
- id: check-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
|
||||
language: python
|
||||
types: [text]
|
||||
- id: check-builtin-literals
|
||||
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
|
||||
language: python
|
||||
types: [python]
|
||||
- id: check-case-conflict
|
||||
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
|
||||
language: python
|
||||
- id: check-docstring-first
|
||||
|
|
@ -41,7 +41,7 @@
|
|||
stages: [commit, push, manual]
|
||||
- id: check-json
|
||||
name: check json
|
||||
description: this hook checks json files for parseable syntax.
|
||||
description: checks json files for parseable syntax.
|
||||
entry: check-json
|
||||
language: python
|
||||
types: [json]
|
||||
|
|
@ -54,13 +54,13 @@
|
|||
stages: [commit, push, manual]
|
||||
- id: 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
|
||||
language: python
|
||||
types: [json]
|
||||
- id: check-merge-conflict
|
||||
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
|
||||
language: python
|
||||
types: [text]
|
||||
|
|
@ -72,7 +72,7 @@
|
|||
types: [symlink]
|
||||
- id: check-toml
|
||||
name: check toml
|
||||
description: this hook checks toml files for parseable syntax.
|
||||
description: checks toml files for parseable syntax.
|
||||
entry: check-toml
|
||||
language: python
|
||||
types: [toml]
|
||||
|
|
@ -84,19 +84,19 @@
|
|||
types: [text]
|
||||
- id: check-xml
|
||||
name: check xml
|
||||
description: this hook checks xml files for parseable syntax.
|
||||
description: checks xml files for parseable syntax.
|
||||
entry: check-xml
|
||||
language: python
|
||||
types: [xml]
|
||||
- id: check-yaml
|
||||
name: check yaml
|
||||
description: this hook checks yaml files for parseable syntax.
|
||||
description: checks yaml files for parseable syntax.
|
||||
entry: check-yaml
|
||||
language: python
|
||||
types: [yaml]
|
||||
- id: debug-statements
|
||||
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
|
||||
language: python
|
||||
types: [python]
|
||||
|
|
@ -120,7 +120,7 @@
|
|||
types: [text]
|
||||
- id: double-quote-string-fixer
|
||||
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
|
||||
language: python
|
||||
types: [python]
|
||||
|
|
@ -133,7 +133,7 @@
|
|||
stages: [commit, push, manual]
|
||||
- id: 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
|
||||
language: python
|
||||
files: '^$'
|
||||
|
|
@ -145,13 +145,13 @@
|
|||
types: [text]
|
||||
- id: fix-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
|
||||
entry: fix-encoding-pragma
|
||||
types: [python]
|
||||
- id: forbid-new-submodules
|
||||
name: forbid new submodules
|
||||
description: prevent addition of new git submodules.
|
||||
description: prevents addition of new git submodules.
|
||||
language: python
|
||||
entry: forbid-new-submodules
|
||||
types: [directory]
|
||||
|
|
@ -187,7 +187,7 @@
|
|||
files: '^$'
|
||||
- id: trailing-whitespace
|
||||
name: trim trailing whitespace
|
||||
description: this hook trims trailing whitespace.
|
||||
description: trims trailing whitespace.
|
||||
entry: trailing-whitespace-fixer
|
||||
language: python
|
||||
types: [text]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue