-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
34 lines (34 loc) · 915 Bytes
/
Copy path.pre-commit-config.yaml
File metadata and controls
34 lines (34 loc) · 915 Bytes
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
repos:
- repo: local
hooks:
- id: rye-lint
name: rye-lint
description: "Lint Python via 'rye lint'"
entry: rye lint --fix
language: system
types_or: [python, pyi]
args: []
require_serial: true
additional_dependencies: []
minimum_pre_commit_version: "2.9.2"
- id: rye-format
name: rye-format
description: "Format Python via 'rye fmt'"
entry: rye fmt
language: system
types_or: [python, pyi]
args: []
require_serial: true
additional_dependencies: []
minimum_pre_commit_version: "2.9.2"
- id: rye-test
name: rye-test
description: "Test Python via 'rye test'"
entry: rye test
language: system
types_or: [python, pyi]
args: []
pass_filenames: false
require_serial: true
additional_dependencies: []
minimum_pre_commit_version: "2.9.2"