-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy path.pre-commit-config.yaml
58 lines (58 loc) · 1.95 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
repos:
# ruff
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.0
hooks:
- id: ruff
types_or: [ python, pyi, jupyter ]
args: [ --fix ]
files: ^ads
exclude: ^docs/
- id: ruff-format
types_or: [ python, pyi, jupyter ]
exclude: ^docs/
# Standard hooks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-ast
exclude: ^docs/
- id: check-docstring-first
exclude: ^(docs/|tests/)
- id: check-json
- id: check-merge-conflict
- id: check-yaml
exclude: feature_store_*.yaml
args: ["--allow-multiple-documents"]
- id: detect-private-key
- id: end-of-file-fixer
exclude: '\.ipynb?$'
- id: pretty-format-json
args: ["--autofix"]
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
exclude: ^docs/
# Regex based rst files common mistakes detector
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0
hooks:
- id: rst-backticks
files: ^docs/
- id: rst-inline-touching-normal
files: ^docs/
# Hardcoded secrets and ocids detector
- repo: https://github.com/gitleaks/gitleaks
rev: v8.18.4
hooks:
- id: gitleaks
exclude: .github/workflows/reusable-actions/set-dummy-conf.yml|./tests/operators/common/test_load_data.py
# Oracle copyright checker
- repo: https://github.com/oracle-samples/oci-data-science-ai-samples/
rev: 1bc5270a443b791c62f634233c0f4966dfcc0dd6
hooks:
- id: check-copyright
name: check-copyright
entry: .pre-commit-scripts/check-copyright.py
language: script
types_or: ["python", "shell", "bash"]
exclude: ^docs/