-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.overcommit.yml
More file actions
46 lines (39 loc) · 922 Bytes
/
Copy path.overcommit.yml
File metadata and controls
46 lines (39 loc) · 922 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
PreCommit:
MergeConflicts:
enabled: true
YamlSyntax:
enabled: true
TrailingWhitespace:
enabled: true
FileSize:
enabled: true
byte_limit: 1048576
RuboCop:
enabled: true
required_executable: 'bundle'
command: ['bundle', 'exec', 'rubocop', '--force-exclusion', '--no-server']
CustomScript:
enabled: true
description: 'Run Steep type checking'
required_executable: 'bundle'
command: ['bundle', 'exec', 'steep', 'check']
Gitleaks:
enabled: true
required_executable: 'gitleaks'
CommitMsg:
enabled: false
CapitalizedSubject:
enabled: false
TextWidth:
enabled: false
TrailingPeriod:
enabled: false
SingleLineSubject:
enabled: false
EmptyMessage:
enabled: false
PrePush:
BundleAudit:
enabled: true
required_executable: 'bundle'
command: ['sh', '-c', 'bundle exec bundle-audit check']