-
Notifications
You must be signed in to change notification settings - Fork 33
/
.pre-commit-config.yaml
50 lines (50 loc) · 1.19 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
---
default_language_version:
node: 15.1.0
repos:
- repo: https://github.com/python/black
rev: 23.7.0
hooks:
- id: black
language_version: python3.10
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.0.0
hooks:
- id: flake8
- repo: https://github.com/pycqa/autoflake
rev: v2.2.0
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"
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
files: "\\.(py)$"
args: [--settings-path=pyproject.toml]
- repo: https://github.com/RobertCraigie/pyright-python
rev: v1.1.320
hooks:
- id: pyright
name: pyright
entry: pyright
args:
- --project=pyproject.toml
- repo: local
hooks:
- id: pytest-check
name: pytest-check
entry: pytest
language: python
files: testing/
types: [python]
always_run: true