-
-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
99 lines (99 loc) · 2.74 KB
/
.pre-commit-config.yaml
File metadata and controls
99 lines (99 loc) · 2.74 KB
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
96
97
98
99
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.9
hooks:
- id: ruff-check
args:
- --fix
- --unsafe-fixes
- id: ruff-format
- repo: https://github.com/codespell-project/codespell
rev: v2.4.2
hooks:
- id: codespell
args:
- --ignore-words-list=deebot,MapP
- --quiet-level=2
- --exclude-file=deebot_client/util/continents.py
- --exclude-file=tests/data/map/test_2.py
exclude_types:
- csv
- json
exclude: ^uv.lock$
- repo: builtin
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: mixed-line-ending
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: detect-private-key
- id: no-commit-to-branch
args: [--branch, main, --branch, dev]
# - repo: https://github.com/doublify/pre-commit-rust
# rev: v1.0
# hooks:
# - id: fmt
# name: Rust format
# language: rust
# - id: cargo-check
# name: Rust check
# language: rust
# - id: clippy
# name: Rust clippy
# language: rust
- repo: https://github.com/rbubley/mirrors-prettier
rev: v3.8.1
hooks:
- id: prettier
language: node
additional_dependencies:
- prettier@3.8.1
- prettier-plugin-sort-json@4.2.0
exclude_types:
- python
exclude: ^uv.lock$
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.38.0
hooks:
- id: yamllint
- repo: local
hooks:
- id: rust-fmt
name: Rust format
entry: cargo fmt --all
language: system
types:
- rust
pass_filenames: false
- id: rust-check
name: Rust check
entry: cargo check --lib --all-features --all-targets
args: ["--"]
language: system
types:
- rust
pass_filenames: false
- id: rust-clippy
name: Rust clippy
entry: cargo clippy --all --all-features --all-targets -- -D warnings
language: system
types:
- rust
pass_filenames: false
# Run mypy through our wrapper script in order to get the possible
# pyenv and/or virtualenv activated; it may not have been e.g. if
# committing from a GUI tool that was not launched from an activated
# shell.
- id: mypy
name: Check with mypy
entry: scripts/run-in-env.sh mypy
language: script
types:
- python
require_serial: true
- id: verifyNoGetLogger
name: Verify no getLogger usages
entry: scripts/check_getLogger.sh
language: script
require_serial: true