1
0
mirror of https://github.com/wting/autojump synced 2024-09-28 14:00:46 +00:00
wting_autojump/.pre-commit-config.yaml

30 lines
931 B
YAML
Raw Normal View History

2016-04-29 06:25:07 +00:00
- repo: git@github.com:pre-commit/pre-commit-hooks.git
sha: 6f2b0a27e5b9047c6c067fb3d575ba323d572793
hooks:
- id: autopep8-wrapper
args:
- --in-place
- --aggressive
- --aggressive
- id: check-added-large-files
- id: check-ast
- id: check-case-conflict
- id: check-docstring-first
- id: debug-statements
- id: double-quote-string-fixer
- id: end-of-file-fixer
- id: fix-encoding-pragma
- id: flake8
2016-04-29 06:29:55 +00:00
args:
2016-04-29 06:47:20 +00:00
- --max-complexity=10
2016-04-29 07:37:54 +00:00
- --max-line-length=130
2016-04-29 06:47:20 +00:00
- --ignore=E126,E128,E731
- --exclude=bin/autojump_argparse.py
2016-04-29 06:25:07 +00:00
- id: requirements-txt-fixer
- id: trailing-whitespace
- repo: git@github.com:asottile/reorder_python_imports.git
sha: 017e2f64306853ec7f000db52b8280da27eb3b96
hooks:
- id: reorder-python-imports
language_version: python2.7