mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-03-29 18:16:52 +00:00
Merge pull request #84 from pre-commit/update_description_about_autopep8
Update description about autopep8. Closes #83
This commit is contained in:
commit
edb5d5219e
2 changed files with 3 additions and 3 deletions
|
|
@ -24,8 +24,8 @@ Add this to your `.pre-commit-config.yaml`
|
|||
### Hooks available
|
||||
|
||||
- `autopep8-wrapper` - Runs autopep8 over python source.
|
||||
- Ignore PEP 8 violation types with `args: ['-i', '--ignore=E000,...']`,
|
||||
see `.pre-commit-config.yaml` in this repository for an example.
|
||||
- Ignore PEP 8 violation types with `args: ['-i', '--ignore=E000,...']` or
|
||||
through configuration of the `[pep8]` section in setup.cfg / tox.ini.
|
||||
- `check-added-large-files` - Prevent giant files from being committed.
|
||||
- Specify what is "too large" with `args: ['--maxkb=123']` (default=500kB).
|
||||
- `check-ast` - Simply check whether files parse as valid python.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
- id: autopep8-wrapper
|
||||
name: autopep8 wrapper
|
||||
description: "Runs autopep8 over python source. (You'll want args: [-i] when using this hook, see .pre-commit-config.yaml for an example.)"
|
||||
description: "Runs autopep8 over python source. If you configure additional arguments you'll want to at least include -i."
|
||||
entry: autopep8-wrapper
|
||||
language: python
|
||||
files: \.py$
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue