-
Notifications
You must be signed in to change notification settings - Fork 749
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
104 lines (95 loc) · 3.26 KB
/
.pre-commit-config.yaml
File metadata and controls
104 lines (95 loc) · 3.26 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
exclude: _generated.go$|\.svg$|^third_party/|^proto/swagger/|^apiserver/pkg/swagger/datafile.go$|^docs/reference/api.md$|^config/grafana/|^dashboard/\.yarn/releases/yarn-.*\.cjs$
default_language_version:
golang: 1.25.0
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
args: [--allow-multiple-documents]
exclude: ^helm-chart/|^mkdocs\.yml$|^benchmark/perf-tests/|^\.krew\.yaml$
- id: check-added-large-files
exclude: ^ray-operator/config/crd/bases/
- id: check-merge-conflict
- id: check-case-conflict
- id: check-vcs-permalinks
- id: check-json
- id: pretty-format-json
args: [--autofix, --no-sort-keys, --no-ensure-ascii]
- id: mixed-line-ending
args: [--fix=lf]
- id: detect-private-key
- repo: https://github.com/gitleaks/gitleaks
rev: v8.18.2
hooks:
- id: gitleaks
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.10.0.1
hooks:
- id: shellcheck
- repo: local
hooks:
- id: golangci-lint
name: golangci-lint
entry: ./scripts/lint.sh
types: [go]
language: golang
require_serial: true
always_run: true
pass_filenames: false
additional_dependencies:
- github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.7.2
- id: generate-crd-schema
name: generate CRD schemas for use of kubeconform
entry: ./scripts/generate-crd-schema.sh
language: python
require_serial: true
always_run: true
pass_filenames: false
additional_dependencies:
- PyYAML==6.0.1
- id: validate-helm-charts
name: validate helm charts with kubeconform
entry: bash scripts/validate-helm.sh
language: golang
require_serial: true
always_run: true
pass_filenames: false
additional_dependencies:
- github.com/yannh/kubeconform/cmd/kubeconform@v0.6.7
- id: eslint
name: ESLint TypeScript/JavaScript check
entry: ./scripts/dashboard-lint.sh
language: node
require_serial: true
pass_filenames: true
files: .*\.(js|jsx|ts|tsx|cjs|mjs)$
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.44.0
hooks:
- id: markdownlint-fix
name: Markdown linting
args:
- --ignore=.github/pull_request_template.md
- --disable=MD033
- repo: https://github.com/google/yamlfmt
rev: v0.17.0
hooks:
- id: yamlfmt
files: ^ray-operator/config/samples/
- repo: https://github.com/norwoodj/helm-docs
rev: v1.14.2
hooks:
- id: helm-docs-built
args:
# Make the tool search for charts only under the `helm-chart` directory
- --chart-search-root=helm-chart
- --chart-to-generate=helm-chart/kuberay-operator
- --chart-to-generate=helm-chart/kuberay-apiserver
- --chart-to-generate=helm-chart/ray-cluster
- --template-files=README.md.gotmpl
- --sort-values-order=file