share-post/.pre-commit-config.yaml

31 lines
739 B
YAML
Raw Normal View History

2021-03-12 16:34:46 +00:00
# See https://pre-commit.com/hooks.html for info on hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: check-added-large-files
- id: check-ast
- id: check-case-conflict
- id: check-toml
- id: check-yaml
- id: debug-statements
- id: detect-private-key
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 21.4b2
2021-03-12 16:34:46 +00:00
hooks:
- id: black
- repo: https://github.com/PyCQA/flake8
rev: 3.9.1
2021-03-12 16:34:46 +00:00
hooks:
- id: flake8
args: [--max-line-length=88]
language_version: python3.7
- repo: https://github.com/PyCQA/isort
rev: 5.8.0
2021-03-12 16:34:46 +00:00
hooks:
- id: isort