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

52 lines
1.3 KiB
YAML
Raw Normal View History

repos:
- repo: git@github.com:pre-commit/pre-commit-hooks.git
rev: v1.4.0
hooks:
- id: autopep8-wrapper
language_version: python3
args:
- --in-place
- --aggressive
- --aggressive
- --ignore=E731
- --max-line-length=131
- id: check-added-large-files
language_version: python3
- id: check-ast
language_version: python3
- id: check-case-conflict
language_version: python3
- id: check-docstring-first
language_version: python3
- id: debug-statements
language_version: python3
- id: double-quote-string-fixer
language_version: python3
- id: end-of-file-fixer
language_version: python3
exclude_types: [batch, lua]
- id: fix-encoding-pragma
language_version: python3
- id: flake8
language_version: python3
args:
- --max-complexity=10
- --max-line-length=131
2018-09-07 05:15:05 +00:00
- --ignore=E402,E731
- --exclude=bin/autojump_argparse.py
- id: name-tests-test
language_version: python3
- id: requirements-txt-fixer
language_version: python3
- id: trailing-whitespace
language_version: python3
- repo: git@github.com:asottile/reorder_python_imports.git
rev: v1.1.1
hooks:
- id: reorder-python-imports
language_version: python3
- repo: git@github.com:asottile/add-trailing-comma
rev: v0.7.0
hooks:
- id: add-trailing-comma