forked from compserv/hknweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
57 lines (57 loc) · 1.87 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks.git
rev: v2.1.0
hooks:
- id: check-added-large-files
- id: check-ast
- id: check-builtin-literals
- id: check-docstring-first
- id: check-executables-have-shebangs
- id: check-json
- id: check-merge-conflict
- id: check-symlinks
- id: check-xml
- id: check-yaml
- id: debug-statements
- id: detect-private-key
- id: double-quote-string-fixer
- id: end-of-file-fixer
- id: file-contents-sorter
- id: flake8
- id: mixed-line-ending
- id: name-tests-test
- id: sort-simple-yaml
- id: trailing-whitespace
- repo: https://github.com/pre-commit/mirrors-autopep8
rev: 'v1.4.3'
hooks:
- id: autopep8
- repo: https://github.com/asottile/reorder_python_imports.git
rev: v1.3.5
hooks:
- id: reorder-python-imports
- repo: https://github.com/asottile/pyupgrade.git
rev: v1.11.3
hooks:
- id: pyupgrade
args: ['--py3-plus']
- repo: https://github.com/asottile/add-trailing-comma.git
rev: v0.7.2
hooks:
- id: add-trailing-comma
args: ['--py35-plus']
- repo: https://github.com/Lucas-C/pre-commit-hooks.git
rev: v1.1.6
hooks:
- id: remove-tabs
- repo: local
hooks:
- id: app-templates-prefixed-with-app-name
# https://github.com/ocf/ocfweb/blob/3a4517c6f06f0/.pre-commit-config.yaml#L54-L66
# has more details on why this is a problem. The general idea is that
# having multiple apps in Django can lead them to conflict with each other
# if they have the same template name
language: system
name: App templates must be prefixed with app name
entry: bash -c 'echo "Make sure to prefix your template directories!" && exit 1'
files: ^hknweb/[^/]+/templates/[^/]+\.html$