-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
.pre-commit-config.yaml
42 lines (40 loc) · 1.03 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-ast
- id: check-case-conflict
- id: check-docstring-first
- id: check-executables-have-shebangs
- id: check-json
- id: check-added-large-files
- id: pretty-format-json
args:
- "--autofix"
- "--indent=4"
- id: detect-private-key
- id: debug-statements
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: local
hooks:
- id: mypy
name: mypy
entry: mypy .
require_serial: true
language: system
types: [ python ]
pass_filenames: false
args: [ --config-file=pyproject.toml ]
- id: ruff-lint
name: ruff-lint
entry: ruff check --fix
require_serial: true
language: system
types: [ python ]
- id: ruff-format
name: ruff-format
entry: ruff format
require_serial: true
language: system
types: [ python ]