forked from Enterprise-CMCS/macpro-mdct-mcr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
57 lines (57 loc) · 1.57 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: check-added-large-files
- repo: https://github.com/pre-commit/mirrors-eslint
rev: v8.56.0
hooks:
- id: eslint
files: '\.[jt]sx?$' # *.js, *.jsx, *.ts and *.tsx
types: [file]
additional_dependencies:
- "@typescript-eslint/parser"
- "@typescript-eslint/eslint-plugin"
- "eslint-plugin-jest"
- "eslint-plugin-cypress"
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.3.1
hooks:
- id: prettier
files: '\.[jt]sx?$' # *.js, *.jsx, *.ts and *.tsx
- repo: https://github.com/Yelp/detect-secrets
rev: v1.1.0
hooks:
- id: detect-secrets
args:
- --exclude-files
- .*test\.json
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.0.272
hooks:
- id: ruff
- repo: https://github.com/zricethezav/gitleaks
rev: v8.12.0
hooks:
- id: gitleaks
- repo: local
hooks:
- id: branch-name-validation
name: branch-name-validation
entry: .github/branch-name-validation.sh
language: script
pass_filenames: false
- id: track-flags
name: track-flags
entry: yarn track-flags
language: system
files: '\.tsx?$'
pass_filenames: false
- id: track-todos
name: track-todos
entry: yarn track-todos
language: system
exclude: 'logs/.*'
pass_filenames: false