forked from mattbrictson/rails-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
overcommit.yml
65 lines (54 loc) · 1.21 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
gemfile: false
verify_signatures: false
PreCommit:
BundleCheck:
enabled: true
EsLint:
enabled: true
required_executable: npx
command: ["npx", "--no-install", "eslint", "-f", "compact"]
include:
- app/assets/**/*.js
- app/assets/**/*.jsx
- app/components/**/*.js
- app/components/**/*.jsx
- app/javascript/**/*.js
- app/javascript/**/*.jsx
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"]
include:
- app/assets/**/*.css
- app/assets/**/*.scss
- app/components/**/*.css
- app/components/**/*.scss
- app/javascript/**/*.css
- app/javascript/**/*.scss
TrailingWhitespace:
enabled: true
exclude:
- "**/db/structure.sql"
YamlSyntax:
enabled: true
exclude:
- "test/fixtures/**/*.yml"
YarnCheck:
enabled: true
PostCheckout:
ALL:
quiet: true