-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path.rubocop.yml
45 lines (44 loc) · 932 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
# .rubocop.yml
---
inherit_gem:
rubocop-govuk:
- config/default.yml
- config/rails.yml
AllCops:
TargetRubyVersion: 3.1
Exclude:
- govuk_design_system_formbuilder.gemspec
Rails/Date:
Enabled: false
Rails/ActiveSupportAliases:
Enabled: false
Style/StringLiterals:
Enabled: false
Style/TrailingCommaInArguments:
Enabled: false
Style/TrailingCommaInHashLiteral:
Enabled: false
Style/TrailingCommaInArrayLiteral:
Enabled: false
Naming/MethodParameterName:
Enabled: false
Style/PercentLiteralDelimiters:
Enabled: false
Layout/HashAlignment:
Enabled: false
Style/StringConcatenation:
Enabled: false
Style/SignalException:
Enabled: false
Style/AsciiComments:
Enabled: false
Style/OptionalBooleanParameter:
Enabled: false
Style/CommentAnnotation:
Enabled: false
Style/EmptyCaseCondition:
Enabled: false
Style/FormatString:
EnforcedStyle: format
Style/RedundantParentheses:
Enabled: false