forked from litaio/lita
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.rubocop.yml
51 lines (46 loc) · 1.01 KB
/
.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
AllCops:
NewCops: "enable"
Layout/ArgumentAlignment:
EnforcedStyle: "with_fixed_indentation"
Layout/HashAlignment:
EnforcedHashRocketStyle: "table"
Layout/EndAlignment:
EnforcedStyleAlignWith: "variable"
Layout/LineLength:
Max: 100
Lint/EmptyClass:
Enabled: false
Metrics/AbcSize:
Enabled: false
Metrics/BlockLength:
Enabled: false
Metrics/ClassLength:
Enabled: false
Metrics/MethodLength:
Enabled: false
Metrics/ParameterLists:
Max: 6
Naming/MethodParameterName:
Enabled: false
Naming/VariableNumber:
EnforcedStyle: "snake_case"
Style/Documentation:
Enabled: false
Style/DoubleNegation:
Enabled: false
Style/EachWithObject:
Enabled: false
Style/GuardClause:
Enabled: false
Style/SpecialGlobalVars:
Enabled: false
Style/StringLiterals:
EnforcedStyle: "double_quotes"
Style/StringLiteralsInInterpolation:
EnforcedStyle: "double_quotes"
Style/TrailingCommaInArguments:
Enabled: false
Style/TrailingCommaInArrayLiteral:
Enabled: false
Style/TrailingCommaInHashLiteral:
Enabled: false