-
Notifications
You must be signed in to change notification settings - Fork 3
/
.overcommit.yml
80 lines (69 loc) · 1.66 KB
/
.overcommit.yml
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
gemfile: false
verify_signatures: false
PreCommit:
BundleCheck:
enabled: true
ErbLint:
enabled: true
required_executable: bundle
command: ["bundle", "exec", "erblint"]
include: "**/*.html.erb"
EsLint:
enabled: true
required_executable: npx
command: ["npx", "--no-install", "eslint", "-f", "compact"]
include:
- app/assets/**/*.cjs
- app/components/**/*.cjs
- app/frontend/**/*.cjs
- app/javascript/**/*.cjs
- app/assets/**/*.js
- app/assets/**/*.jsx
- app/components/**/*.js
- app/components/**/*.jsx
- app/frontend/**/*.js
- app/frontend/**/*.jsx
- app/javascript/**/*.js
- app/javascript/**/*.jsx
- app/assets/**/*.ts
- app/assets/**/*.tsx
- app/components/**/*.ts
- app/components/**/*.tsx
- app/frontend/**/*.ts
- app/frontend/**/*.tsx
- app/javascript/**/*.ts
- app/javascript/**/*.tsx
FixMe:
enabled: true
keywords: ["FIXME"]
exclude:
- .overcommit.yml
LocalPathsInGemfile:
enabled: true
RailsSchemaUpToDate:
enabled: true
RuboCop:
enabled: true
required_executable: bundle
command: ["bundle", "exec", "rubocop"]
on_warn: fail
Stylelint:
enabled: true
required_executable: npx
command: ["npx", "--no-install", "stylelint"]
env:
NODE_OPTIONS: --no-deprecation
include:
- app/assets/**/*.css
- app/components/**/*.css
- app/frontend/**/*.css
- app/javascript/**/*.css
TrailingWhitespace:
enabled: true
exclude:
- "**/db/structure.sql"
YarnCheck:
enabled: true
PostCheckout:
ALL:
quiet: true