-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
36 lines (36 loc) · 983 Bytes
/
.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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: check-yaml
- id: check-added-large-files
args: ["--maxkb=2000"]
- id: end-of-file-fixer
- id: pretty-format-json
args: [--autofix, --no-sort-keys]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.2
hooks:
- id: ruff
types_or: [python, pyi, jupyter]
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
hooks:
- id: codespell
args: [-L, "ans"] # Allow extra words
exclude: '.*\.lock$'
additional_dependencies:
- tomli
- repo: local
hooks:
- id: pyright
name: pyright
stages: [pre-commit]
types: [python]
entry: pyright
language: system
pass_filenames: false
always_run: true