forked from Driversnote-Dev/guard-erb_lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
49 lines (42 loc) · 849 Bytes
/
.rubocop.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
inherit_gem:
rubocop-shopify: rubocop.yml
require:
- rubocop-rspec
AllCops:
EnabledByDefault: true
NewCops: enable
Gemspec/RequireMFA:
Enabled: false
Style/DocumentationMethod:
Enabled: false
Style/MissingElse:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/Copyright:
Enabled: false
Style/ConstantVisibility:
Enabled: false
Style/MethodCalledOnDoEndBlock:
Enabled: false
Style/DisableCopsWithinSourceCodeDirective:
Enabled: false
Style/OpenStructUse:
Enabled: false
Style/FrozenStringLiteralComment:
Exclude:
- lib/guard/erb_lint/templates/Guardfile
Metrics/BlockLength:
Exclude:
- Guardfile
- spec/**/*
Metrics/MethodLength:
Max: 20
Metrics/AbcSize:
Max: 20
Lint/NumberConversion:
Enabled: false
Lint/ConstantResolution:
Enabled: false
RSpec/NestedGroups:
Max: 5