-
-
Notifications
You must be signed in to change notification settings - Fork 270
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
34 lines (34 loc) · 867 Bytes
/
.pre-commit-config.yaml
File metadata and controls
34 lines (34 loc) · 867 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
repos:
- repo: https://github.com/psf/black
rev: 22.6.0
hooks:
- id: black
args: [--line-length=100]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.961
hooks:
- id: mypy
name: mypy openml
files: openml/.*
additional_dependencies:
- types-requests
- types-python-dateutil
- id: mypy
name: mypy tests
files: tests/.*
additional_dependencies:
- types-requests
- types-python-dateutil
- repo: https://github.com/pycqa/flake8
rev: 4.0.1
hooks:
- id: flake8
name: flake8 openml
files: openml/.*
additional_dependencies:
- flake8-print==5.0.0
- id: flake8
name: flake8 tests
files: tests/.*
additional_dependencies:
- flake8-print==5.0.0