-
Notifications
You must be signed in to change notification settings - Fork 25
/
.pre-commit-config.yaml
72 lines (68 loc) · 1.84 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
ci:
autoupdate_branch: "main"
autoupdate_schedule: monthly
repos:
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.0.264'
hooks:
- id: ruff
files: |
(?x)^(
components/.*|
src/.*|
data_explorer/.*|
tests/.*|
)$
args: [
"--target-version=py38",
"--fix",
"--exit-non-zero-on-fix",
]
- repo: https://github.com/PyCQA/bandit
rev: 1.7.4
hooks:
- id: bandit
name: bandit
types: [python]
files: |
(?x)^(
components/.*|
src/.*|
examples/.*|
data_explorer/.*|
tests/.*|
)$
args: ["-f", "custom", "-q", "-c", "pyproject.toml", "-r"]
additional_dependencies: [".[toml]"]
- repo: https://github.com/psf/black
rev: 23.1.0
hooks:
- id: black
name: black
files: |
(?x)^(
components/.*|
src/.*|
examples/.*|
data_explorer/.*|
tests/.*|
)$
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.2.0
hooks:
- id: mypy
args: ["--ignore-missing-imports", "src"]
additional_dependencies:
- types-jsonschema
- types-PyYAML
- types-requests
- types-retry
pass_filenames: false
- repo: local
hooks:
- id: generate_component_readmes
name: Generate component READMEs
language: python
entry: python scripts/component_readme/generate_readme.py
files: ^src/fondant/components/[^/]*/fondant_component.yaml
additional_dependencies: ["fondant@git+https://github.com/ml6team/fondant@main", "Jinja2==3.1.2"]