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

36 lines
1.0 KiB
YAML
Raw Normal View History

2016-04-29 06:25:07 +00:00
- repo: git@github.com:pre-commit/pre-commit-hooks.git
sha: v0.9.1
2016-04-29 06:25:07 +00:00
hooks:
- id: autopep8-wrapper
args:
- --in-place
- --aggressive
- --aggressive
- --max-line-length=131
2017-07-20 06:19:19 +00:00
- --ignore=E126,E128,E402,E731
2016-04-29 06:25:07 +00:00
- 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-05-04 06:14:36 +00:00
- --max-complexity=10
- --max-line-length=131
2017-07-20 06:19:19 +00:00
- --ignore=E126,E128,E402,E731
2016-05-04 06:14:36 +00:00
- --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: v0.3.5
2016-04-29 06:25:07 +00:00
hooks:
- id: reorder-python-imports
language_version: python2.7
- repo: https://github.com/asottile/add-trailing-comma
sha: v0.6.1
hooks:
- id: add-trailing-comma