-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.overcommit.yml
More file actions
49 lines (38 loc) · 827 Bytes
/
.overcommit.yml
File metadata and controls
49 lines (38 loc) · 827 Bytes
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
verify_signatures: false
PreCommit:
RuboCop:
command: ['rubocop', '--force-exclusion']
enabled: true
on_warn: fail
exclude:
- bin/*
- db/migrate/*
- spec/dummy/**/*
BundleCheck:
enabled: true
BundleOutdated:
enabled: true
LocalPathsInGemfile:
enabled: true
ExecutePermissions:
enabled: true
exclude:
- bin/*
- spec/dummy/bin/*
- .codeship/*
YamlSyntax:
enabled: true
CustomScript:
enabled: true
description: Js/Scss linters
command: ['yarn', 'lint']
TrailingWhitespace:
enabled: true
PostCheckout:
ALL:
quiet: true # Change all post-checkout hooks to only display output on failure
IndexTags:
enabled: true # Generate a tags file with `ctags` each time HEAD changes
PrePush:
RSpec:
enabled: true