forked from wiesnim9/CSSFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
65 lines (60 loc) · 1.49 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
exclude: '^(\.tox|\.env|dist|\.vscode)(/|$)'
repos:
- repo: https://github.com/PyCQA/autoflake
rev: "v2.0.1"
hooks:
- id: autoflake
args:
[
--jobs,
"32",
--remove-all-unused-imports,
--in-place,
--expand-star-imports,
]
- repo: https://github.com/myint/docformatter
rev: "v1.5.1"
hooks:
- id: docformatter
args:
[
--in-place,
-r,
--wrap-summaries,
"88",
--wrap-descriptions,
"88",
"--close-quotes-on-newline",
"--blank",
]
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v2.7.1"
hooks:
- id: prettier
- repo: https://github.com/ambv/black
rev: "23.3.0"
hooks:
- id: black
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v4.4.0"
hooks:
- id: check-merge-conflict
args: [--assume-in-merge]
- id: check-case-conflict
- id: trailing-whitespace
- id: end-of-file-fixer
- id: debug-statements
- id: check-added-large-files
args: ["--maxkb=2000"]
- id: check-toml
# - id: check-json
- id: mixed-line-ending
args: ["--fix=lf"]
- id: trailing-whitespace
- id: debug-statements
- repo: https://github.com/charliermarsh/ruff-pre-commit
# Ruff version.
rev: "v0.3.7"
hooks:
- id: ruff
args: ["--fix"]