-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
72 lines (72 loc) · 1.82 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
# SPDX-FileCopyrightText: 2023-2025 Vladimir Rusinov
# SPDX-License-Identifier: Apache-2.0
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/PyCQA/flake8
rev: 7.1.2
hooks:
- id: flake8
additional_dependencies:
- flake8-bugbear==24.2.6
- wemake-python-styleguide==0.19.2
- repo: https://github.com/asottile/pyupgrade
rev: v3.19.1
hooks:
- id: pyupgrade
- repo: https://github.com/pycqa/isort
rev: 6.0.1
hooks:
- id: isort
name: isort (python)
- repo: https://github.com/crate-ci/typos
rev: v1
hooks:
- id: typos
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.9.9'
hooks:
- id: ruff
- id: ruff-format
- repo: https://github.com/golangci/golangci-lint
rev: "v1.64.6"
hooks:
- id: golangci-lint
- repo: https://github.com/fsfe/reuse-tool
rev: "v5.0.2"
hooks:
- id: reuse
- repo: https://github.com/cpplint/cpplint
rev: "2.0.0"
hooks:
- id: cpplint
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.35.1
hooks:
- id: yamllint
- repo: https://github.com/markdownlint/markdownlint.git
rev: v0.12.0
hooks:
- id: markdownlint
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.44.0
hooks:
- id: markdownlint
- repo: https://github.com/pylint-dev/pylint
rev: v3.3.4
hooks:
- id: pylint
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: 'v19.1.7'
hooks:
- id: clang-format
- repo: https://github.com/amperser/proselint
rev: 0.14.0
hooks:
- id: proselint