30 lines
830 B
YAML
30 lines
830 B
YAML
repos:
|
|
- repo: https://github.com/ambv/black
|
|
rev: 19.10b0
|
|
hooks:
|
|
- id: black
|
|
args: [--safe, --quiet, --target-version, py35]
|
|
language_version: python3.7
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v2.4.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: debug-statements
|
|
- id: flake8
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v2.7.2
|
|
hooks:
|
|
- id: pyupgrade
|
|
args: [--py3-plus]
|
|
- repo: local
|
|
hooks:
|
|
- id: rst
|
|
name: rst
|
|
entry: rst-lint --encoding utf-8
|
|
files: ^(CHANGELOG.rst|HOWTORELEASE.rst|README.rst|changelog/.*)$
|
|
language: python
|
|
additional_dependencies: [pygments, restructuredtext_lint]
|
|
language_version: python3.7
|