forked from Arduino-CI/arduino_ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
130 lines (97 loc) · 2.37 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
AllCops:
TargetRubyVersion: 2.5
NewCops: enable
SuggestExtensions: false
Exclude:
- '*.gemspec'
- 'spec/*.rb'
- '**/generated_parser/*'
- './vendor/**/*'
- 'SampleProjects/**/vendor/**/*'
# TODO: stuff I actually want to fix
Style/RescueStandardError:
Enabled: false
Security/Open:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
# broken :( https://github.com/rubocop-hq/rubocop/issues/9144
Style/StringConcatenation:
Enabled: false
# Ruins git diffs
Style/AccessorGrouping:
Enabled: false
# Ruins keeping the upper half of the conditional smaller
Style/NegatedIfElseCondition:
Enabled: false
# affects calling style?
Style/OptionalBooleanParameter:
Enabled: false
# Extra lines for readability
Layout/EmptyLinesAroundClassBody:
Enabled: false
Layout/EmptyLinesAroundMethodBody:
Enabled: false
Layout/EmptyLinesAroundModuleBody:
Enabled: false
# This can add clarity
Style/CommentedKeyword:
Enabled: false
# Configuration parameters: AllowForAlignment.
Layout/ExtraSpacing:
Enabled: false
Layout/EndOfLine:
EnforcedStyle: lf
Layout/EndAlignment:
EnforcedStyleAlignWith: start_of_line
Layout/CaseIndentation:
EnforcedStyle: end
Layout/LineLength:
Enabled: true
Max: 130
# Configuration parameters: CountComments.
Metrics/ClassLength:
Enabled: false
Metrics/AbcSize:
Enabled: false
Metrics/MethodLength:
Enabled: false
Metrics/BlockLength:
Enabled: false
# Configuration parameters: CountKeywordArgs.
Metrics/ParameterLists:
Max: 7
Style/BlockComments:
Enabled: false
Style/ColonMethodCall:
Enabled: false
# if you find "a == 3" readable and "3 == a" 'unreadable', do not contribute to this project.
Style/YodaCondition:
Enabled: false
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/FormatString:
Enabled: false
# Offense count: 1
Metrics/CyclomaticComplexity:
Enabled: false
Max: 11
# Offense count: 1
Metrics/PerceivedComplexity:
Enabled: false
Max: 14
# Cop supports --auto-correct.
Style/RedundantSelf:
Enabled: false
# because apostrophes
Style/StringLiterals:
Enabled: false
Style/TrailingCommaInArrayLiteral:
Enabled: false
Style/TrailingCommaInHashLiteral:
Enabled: false
Style/SymbolArray:
Enabled: false
# because if the robot can comment better than me then
# it might as well learn to write the code for me
Style/CommentAnnotation:
Enabled: false