blob: 8a627512b57d222c8c79acb152e2bc9a09b450da (
plain)
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
63
64
|
repos:
- repo: git://github.com/pre-commit/pre-commit-hooks
sha: v1.1.1
hooks:
- id: trailing-whitespace
exclude: cherrypy/test/static/index.html
- id: flake8
args:
# W503 ignored for https://github.com/PyCQA/pycodestyle/issues/498
- --ignore=W503
- id: check-merge-conflict
- id: double-quote-string-fixer
- id: end-of-file-fixer
- id: name-tests-test
include: cherrypy/test/
args:
- --django
exclude: tests/dist-check.py
- id: debug-statements
- id: check-added-large-files
- id: check-ast
- id: check-byte-order-marker
- id: check-case-conflict
# disabled due to pre-commit/pre-commit-hooks#159
#- id: check-docstring-first
- id: check-json
include: .mention-bot
- id: check-symlinks
- id: check-yaml
- id: detect-private-key
exclude: cherrypy/test/test.pem
- id: requirements-txt-fixer
- repo: git://github.com/chewse/pre-commit-mirrors-pydocstyle
sha: v2.1.1
hooks:
- id: pydocstyle
exclude: |
(?x)
tests/dist|
cherrypy/(
_cp(
compat|modpy|logging|error|wsgi|dispatch|tools|reqbody|request
)|
(
lib/(
auth|auth_basic|auth_digest|caching|covercp|
cpstats|cptools|encoding|gctools|httpauth|httputil|
jsontools|lockfile|locking|profiler|reprconf|sessions
)|
process/(plugins|servers|win32)
).py|
test|tutorial
)
- repo: git://github.com/Lucas-C/pre-commit-hooks
sha: v1.1.1
hooks:
- id: remove-tabs
- repo: git://github.com/Lucas-C/pre-commit-hooks-lxml
sha: v1.0.2
hooks:
- id: forbid-html-img-without-alt-text
|