forked from explosion/spacy-llm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
36 lines (33 loc) · 826 Bytes
/
.pre-commit-config.yaml
File metadata and controls
36 lines (33 loc) · 826 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
35
36
repos:
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.0.272'
hooks:
- id: ruff
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
name: isort (python)
- id: isort
name: isort (cython)
types: [cython]
- id: isort
name: isort (pyi)
types: [pyi]
- repo: https://github.com/ambv/black
rev: 22.3.0
hooks:
- id: black
entry: black spacy_llm
additional_dependencies: ['click==8.0.4']
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.1.1
hooks:
- id: mypy
name: mypy
entry: mypy
exclude: ^(.github/)
language: python
types: [python]
require_serial: true
args: [ "--ignore-missing-imports", "--no-implicit-optional", "--allow-redefinition" ]