-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy path.pre-commit-config.yaml
51 lines (51 loc) · 1.24 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
---
repos:
- repo: https://github.com/pycqa/autoflake
rev: v2.3.1
hooks:
- id: autoflake
name: autoflake
entry: autoflake
language: python
types: [python]
require_serial: true
args:
- "--in-place"
- "--expand-star-imports"
- "--remove-duplicate-keys"
- "--remove-unused-variables"
- "--remove-all-unused-imports"
- "--ignore-init-module-imports"
- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
- id: isort
files: \\.py$
args: [--settings-path=pyproject.toml]
- repo: https://github.com/python/black
rev: 24.10.0
hooks:
- id: black
language_version: python3
- repo: https://github.com/PyCQA/flake8
rev: 7.1.1
hooks:
- id: flake8
- repo: https://github.com/RobertCraigie/pyright-python
rev: v1.1.392.post0
hooks:
- id: pyright
name: pyright
entry: pyright
args:
- --project=pyproject.toml
- repo: local
hooks:
- id: pytest-check
name: pytest-check
entry: pytest
args: [testing/]
language: python
pass_filenames: false
types: [python]
always_run: true