-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrubocop.yml
45 lines (42 loc) · 909 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
AllCops:
Exclude:
- "bin/**/*"
- ".bundle/**/*"
- "bundle/**/*"
- "node_modules/**/*"
TargetRubyVersion: 2.3
Layout/ParameterAlignment:
EnforcedStyle: with_fixed_indentation
Layout/DotPosition:
EnforcedStyle: trailing
Layout/SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
Metrics/BlockLength:
ExcludedMethods:
- context
- describe
- feature
- shared_examples
- shared_examples_for
- namespace
- draw
Style/ClassAndModuleChildren:
EnforcedStyle: compact
Style/Documentation:
Enabled: false
Style/EmptyCaseCondition:
Enabled: false
Style/EmptyMethod:
EnforcedStyle: expanded
Style/FrozenStringLiteralComment:
Enabled: false
Style/Lambda:
EnforcedStyle: literal
Style/NegatedIf:
Enabled: false
Style/PercentLiteralDelimiters:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/SymbolArray:
Enabled: false