-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.rubocop.yml
51 lines (36 loc) · 878 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
50
51
# .rubocop.yml
---
inherit_gem:
rubocop-govuk:
- config/default.yml
- config/rails.yml
AllCops:
NewCops: enable
Style/PercentLiteralDelimiters:
Enabled: false
Style/StringLiterals:
Enabled: false
Style/SignalException:
EnforcedStyle: semantic
Style/TrailingCommaInArrayLiteral:
EnforcedStyleForMultiline: consistent_comma
Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: consistent_comma
Style/FrozenStringLiteralComment:
EnforcedStyle: never
Style/TernaryParentheses:
Enabled: false
Style/RedundantParentheses:
Enabled: false
Style/Documentation:
Enabled: false
Layout/AccessModifierIndentation:
EnforcedStyle: outdent
Metrics/MethodLength:
Max: 20
Style/HashSyntax:
EnforcedShorthandSyntax: never
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: no_comma
Gemspec/RequiredRubyVersion:
Enabled: false