This repository has been archived by the owner on Nov 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.rubocop_disabled.yml
72 lines (55 loc) · 1.93 KB
/
.rubocop_disabled.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# These are all the cops that are disabled in the default configuration.
Style/FrozenStringLiteralComment:
Description: >-
Add the frozen_string_literal comment to the top of files
to help transition from Ruby 2.3.0 to Ruby 3.0.
Enabled: false
Style/InlineComment:
Description: "Avoid inline comments."
Enabled: false
Style/MethodCalledOnDoEndBlock:
Description: "Avoid chaining a method call on a do...end block."
Enabled: false
Style/SymbolArray:
Description: "Use %i or %I for arrays of symbols."
Enabled: false
Style/Documentation:
Description: "Document classes and non-namespace modules."
Enabled: false
Layout/EmptyLinesAroundAccessModifier:
Description: "Keep blank lines around access modifiers."
Enabled: false
Style/EmptyLiteral:
Description: "Prefer literals to Array.new/Hash.new/String.new."
Enabled: false
Style/ClassAndModuleChildren:
Description: "Checks style of children classes and modules."
Enabled: false
Metrics/ClassLength:
Description: "Avoid classes longer than 100 lines of code."
Enabled: false
Metrics/MethodLength:
Description: "Avoid methods longer than 10 lines of code."
Enabled: false
Metrics/ParameterLists:
Description: "Avoid parameter lists longer than three or four parameters."
Enabled: false
Metrics/CyclomaticComplexity:
Description: "Avoid complex methods."
Enabled: false
Layout/AlignArray:
Description: >-
Align the elements of an array literal if they span more than
one line.
Enabled: false
Style/UnneededPercentQ:
Description: "Checks for %q/%Q when single quotes or double quotes would do."
Enabled: false
Naming/AccessorMethodName:
Description: Check the naming of accessor methods for get_/set_.
Enabled: false
#################### Lint ################################
### Warnings
Lint/AssignmentInCondition:
Description: "Don't use assignment in conditions."
Enabled: false