@@ -23,10 +23,6 @@ Add this to your `.pre-commit-config.yaml`
2323
2424### Hooks available
2525
26- - ` autopep8-wrapper ` - Runs autopep8 over python source.
27- - Ignore PEP 8 violation types with ` args: ['-i', '--ignore=E000,...'] ` or
28- through configuration of the ` [pycodestyle] ` section in
29- setup.cfg / tox.ini.
3026- ` check-added-large-files ` - Prevent giant files from being committed.
3127 - Specify what is "too large" with ` args: ['--maxkb=123'] ` (default=500kB).
3228 - If ` git-lfs ` is installed, lfs files will be skipped
@@ -86,7 +82,6 @@ Add this to your `.pre-commit-config.yaml`
8682 ` master ` is the default if no argument is set.
8783 - ` -b ` / ` --branch ` may be specified multiple times to protect multiple
8884 branches.
89- - ` pyflakes ` - Run pyflakes on your python files.
9085- ` pretty-format-json ` - Checks that all your JSON files are pretty. "Pretty"
9186 here means that keys are sorted and indented. You can configure this with
9287 the following commandline options:
@@ -102,6 +97,12 @@ Add this to your `.pre-commit-config.yaml`
10297 ` args: ['--markdown-linebreak-ext=*'] ` to preserve them for all files,
10398 or ` args: ['--no-markdown-linebreak-ext'] ` to disable and always trim.
10499
100+ ### Deprecated / replaced hooks
101+
102+ - ` autopep8-wrapper ` : instead use
103+ [ mirrors-autopep8] ( https://github.com/pre-commit/mirrors-autopep8 )
104+ - ` pyflakes ` : instead use ` flake8 `
105+
105106### As a standalone package
106107
107108If you'd like to use these hooks, they're also available as a standalone
0 commit comments