-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
42 lines (42 loc) · 1.29 KB
/
.pre-commit-config.yaml
File metadata and controls
42 lines (42 loc) · 1.29 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
# disable autofixing PRs, commenting "pre-commit.ci autofix" on a pull request triggers a autofix
ci:
autofix_prs: false
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: check-added-large-files
- id: check-ast
- id: fix-byte-order-marker
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: check-shebang-scripts-are-executable
- id: debug-statements
- id: detect-private-key
- id: mixed-line-ending
- id: end-of-file-fixer
- id: trailing-whitespace
- id: check-yaml
exclude: ^recipe/meta.yaml$
- id: check-json
- id: pretty-format-json
args: [--autofix, --no-sort-keys]
exclude: ^(menuinst|tests)/_legacy/.*$
- id: check-merge-conflict
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.15.5
hooks:
# Run the linter.
- id: ruff
args: [ --fix ]
exclude: ^(menuinst|tests)/_legacy/.*$
# Run the formatter.
- id: ruff-format
exclude: ^(menuinst|tests)/_legacy/.*$
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.37.0
hooks:
- id: check-github-workflows
exclude: ^menuinst/_vendor/.*$