-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
44 lines (44 loc) · 963 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
AllCops:
SuggestExtensions: false
NewCops: enable
Exclude:
- 'spec/spec_helper.rb'
- 'config/**/*'
- 'bin/*'
Style/Documentation:
Enabled: false
Style/SymbolArray:
Enabled: false
Style/StringLiterals:
Enabled: false
Style/TrailingCommaInArrayLiteral:
Enabled: false
Style/BlockDelimiters:
Enabled: false
Style/RedundantInterpolation:
Enabled: false
Style/NestedParenthesizedCalls:
Enabled: false
Layout/SpaceInsideParens:
Enabled: false
Metrics/BlockLength:
Enabled: false
Metrics/MethodLength:
Max: 12
Bundler/OrderedGems:
Enabled: false
Layout/LineLength:
Max: 110
IgnoredPatterns: ['^(\s+)?#']
Layout/SpaceInsidePercentLiteralDelimiters:
Enabled: false
Layout/EmptyLinesAroundBlockBody:
Enabled: false
Layout/EmptyLinesAroundClassBody:
Enabled: false
Layout/FirstArrayElementIndentation:
Enabled: false
Layout/MultilineMethodCallIndentation:
Enabled: false
Lint/AmbiguousBlockAssociation:
Enabled: false