-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
.pre-commit-config.yaml
62 lines (56 loc) · 1.81 KB
/
.pre-commit-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
default_language_version:
python: python3
repos:
- repo: https://github.com/psf/black
rev: '22.3.0'
hooks:
- id: black
- repo: https://github.com/Pierre-Sassoulas/black-disable-checker
rev: '1.0.1'
hooks:
- id: black-disable-checker
- repo: https://github.com/PyCQA/flake8
rev: '3.9.2'
hooks:
- id: flake8
- repo: https://github.com/PyCQA/isort
rev: '5.12.0'
hooks:
- id: isort
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
# JSON auto-formatter
# needs to come before mixed-line-ending, see:
# https://github.com/pre-commit/pre-commit-hooks/issues/622
- id: pretty-format-json
args:
- "--autofix"
- "--indent=4"
- "--no-sort-keys"
# all files should end with an empty line (for one, it minimizes the diffs)
- id: end-of-file-fixer
# po files are auto-generated so let's not touch them
exclude_types: [pofile]
# `.gitattributes` should technically already handle this
# but autocrlf can result in local files keeping the CRLF
# which is problematic for some tools
- id: mixed-line-ending
args:
- "--fix=lf"
# Trailing whitespace is evil
- id: trailing-whitespace
# Require literal syntax when initializing builtin types
- id: check-builtin-literals
# Ensure that links to code on GitHub use the permalinks
- id: check-vcs-permalinks
# Syntax validation
- id: check-ast
- id: check-json
- id: check-toml
# can be switched to yamllint when this issue gets resolved:
# https://github.com/adrienverge/yamllint/issues/238
- id: check-yaml
# Checks for git-related issues
- id: check-case-conflict
- id: check-merge-conflict