forked from 5yutan5/PyQtDarkTheme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
95 lines (85 loc) · 2.37 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
ci:
# Replace use some hooks of pre-commit.ci with our own github actions.
# See https://github.com/pre-commit-ci/issues/issues/55.
skip: ['pyright']
repos:
- repo: local
hooks:
- id: build-resources
name: Build resources
entry: python -m tools.build_resources
language: python
additional_dependencies: ['rich']
pass_filenames: false
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
hooks:
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
- id: end-of-file-fixer
exclude: (?x)(^.*/.*\.svg$)
- id: check-json
- id: check-toml
- id: check-added-large-files
- repo: https://github.com/asottile/pyupgrade
rev: v2.32.0
hooks:
- id: pyupgrade
args: [--py37-plus]
- repo: https://github.com/psf/black
rev: 22.3.0
hooks:
- id: black
- repo: https://github.com/asottile/blacken-docs
rev: v1.12.1
hooks:
- id: blacken-docs
additional_dependencies: [black]
- repo: https://github.com/MarcoGorelli/absolufy-imports
rev: v0.3.1
hooks:
- id: absolufy-imports
- repo: https://github.com/PyCQA/isort
rev: 5.10.1
hooks:
- id: isort
- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
hooks:
- id: flake8
entry: pflake8
additional_dependencies: &flake8_dependencies
- pyproject-flake8
- pep8-naming
- flake8-print
- flake8-return
- flake8-simplify
- flake8-bugbear
- flake8-docstrings
- flake8-comprehensions
- flake8-eradicate
- flake8-rst-docstrings
- flake8-pytest-style
- repo: https://github.com/asottile/yesqa
rev: v1.3.0
hooks:
- id: yesqa
additional_dependencies: *flake8_dependencies
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.9.0
hooks:
- id: rst-backticks
- id: rst-directive-colons
- id: rst-inline-touching-normal
- id: python-no-eval
- id: python-no-log-warn
- id: python-use-type-annotations
- repo: local
hooks:
- id: pyright
name: pyright
entry: pyright
language: python
pass_filenames: false
types: [python]
additional_dependencies: ['pyright', 'PyQt6', 'rich', 'pytest', 'pytest-qt']