You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wting_autojump/.pre-commit-config.yaml

36 lines
1.0 KiB

8 years ago
- repo: git@github.com:pre-commit/pre-commit-hooks.git
sha: v0.9.1
8 years ago
hooks:
- id: autopep8-wrapper
args:
- --in-place
- --aggressive
- --aggressive
- --max-line-length=131
7 years ago
- --ignore=E126,E128,E402,E731
8 years ago
- 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
args:
- --max-complexity=10
- --max-line-length=131
7 years ago
- --ignore=E126,E128,E402,E731
- --exclude=bin/autojump_argparse.py
8 years ago
- id: requirements-txt-fixer
- id: trailing-whitespace
- repo: git@github.com:asottile/reorder_python_imports.git
sha: v0.3.5
8 years ago
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