-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
.rubocop.yml
69 lines (67 loc) · 1.36 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
require: rubocop-rspec
RSpec/MultipleExpectations:
Max: 5
RSpec/ContextWording:
Enabled: false
RSpec/ExampleLength:
Max: 6
RSpec/InstanceVariable:
Enabled: false
RSpec/SpecFilePathFormat:
Enabled: false
AllCops:
NewCops: enable
Exclude:
- sys-cpu.gemspec
- Gemfile
- install.rb
- examples/*.rb
- Rakefile
Lint/AssignmentInCondition:
Enabled: false
Lint/EmptyBlock:
Exclude:
- spec/*.rb
Style/MethodCallWithoutArgsParentheses:
Enabled: false
Style/NumericPredicate:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Style/ConditionalAssignment:
Enabled: false
Style/HashSyntax:
EnforcedStyle: hash_rockets
Style/IfUnlessModifier:
Enabled: false
Style/RedundantBegin:
Enabled: false
Style/SafeNavigation:
Enabled: false
Style/SlicingWithRange:
Enabled: false
Layout/EmptyLineAfterGuardClause:
Enabled: false
Layout/CaseIndentation:
IndentOneStep: true
Layout/SpaceBeforeBlockBraces:
Enabled: false
Metrics/AbcSize:
Enabled: false
Metrics/BlockLength:
AllowedMethods: ['describe', 'context']
Metrics/ClassLength:
Enabled: false
Metrics/MethodLength:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false
Naming/VariableNumber:
Enabled: false
Naming/RescuedExceptionsVariableName:
PreferredName: 'err'
Naming/FileName:
Exclude:
- 'lib/sys-cpu.rb'