forked from Arize-ai/phoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
41 lines (41 loc) · 1.43 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
repos:
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: "v0.1.3"
hooks:
- id: ruff-format
- id: ruff
args: [--fix]
- repo: local
hooks:
- id: clean-notebooks
name: clean-notebooks
files: \.ipynb$
exclude: ^tutorials/evals/.*\.ipynb$
stages: [commit]
language: system
entry: jupyter nbconvert --ClearOutputPreprocessor.enabled=True --ClearMetadataPreprocessor.enabled=True --inplace
- repo: local
hooks:
- id: format-notebooks
name: format-notebooks
files: \.ipynb$
stages: [commit]
language: system
entry: nbqa ruff --fix --ignore=E402 --ignore=E501 --ignore=F704
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "6f3cb139ef36133b6f903b97facc57b07cef57c9"
hooks:
- id: prettier
files: \.(jsx?|tsx?|css|.md)$
exclude: \.*__generated__.*$
additional_dependencies:
- repo: https://github.com/pre-commit/mirrors-eslint
rev: "8ddcbd412c0b348841f0f82c837702f432539652"
hooks:
- id: eslint
additional_dependencies: