-
Notifications
You must be signed in to change notification settings - Fork 3
/
.rubocop.yml
103 lines (78 loc) · 2.2 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
# List of cops can be found here:
# https://github.com/bbatsov/rubocop/blob/master/config/default.yml
# https://github.com/bbatsov/rubocop/blob/master/config/disabled.yml
# https://github.com/bbatsov/rubocop/blob/master/config/enabled.yml
require: rubocop-rspec
inherit_from:
- https://raw.githubusercontent.com/ualbertalib/library_applications_development_inclusive_language/main/inclusive_language_rubocop.yml
AllCops:
DisplayCopNames: true
DisplayStyleGuide: true
Exclude:
- 'tmp/**/*'
- 'vendor/**/*'
- 'Dangerfile'
ExtraDetails: true
TargetRubyVersion: 2.7
NewCops: enable
# readability is Actually Good
Layout/EmptyLinesAroundClassBody:
EnforcedStyle: empty_lines_except_namespace
Layout/IndentationConsistency:
EnforcedStyle: normal
# A calculated magnitude based on number of assignments,
# branches, and conditions.
Metrics/AbcSize:
Enabled: false
Metrics/ClassLength:
Max: 500 # default 100
# A complexity metric that is strongly correlated to the number
# of test cases needed to validate a method.
Metrics/CyclomaticComplexity:
Enabled: false
Layout/LineLength:
Enabled: true
Max: 120 # default is 80
# Avoid methods longer than 10 lines of code.
Metrics/MethodLength:
Enabled: false
Metrics/BlockLength:
Enabled: false
Metrics/ModuleLength:
Max: 500 # default 100
# A complexity metric geared towards measuring complexity for a human reader.
Metrics/PerceivedComplexity:
Enabled: false
# indentation is an endangered resource
Style/ClassAndModuleChildren:
EnforcedStyle: compact
Style/Documentation:
Enabled: false
Naming/FileName:
Exclude:
- Dangerfile
- Rakefile
- Gemfile
# Checks if there is a magic comment to enforce string literals
Style/FrozenStringLiteralComment:
Enabled: false
# Perfer to use // but %r can be better in certain scenarios
Style/RegexpLiteral:
Enabled: false
Style/SymbolArray:
Enabled: false
# Use %w or %W for arrays of words.
Style/WordArray:
Enabled: false
RSpec/ExampleLength:
Enabled: false
RSpec/MultipleExpectations:
Enabled: false
RSpec/MultipleMemoizedHelpers:
Enabled: false
RSpec/DescribedClass:
EnforcedStyle: explicit
Naming/VariableNumber:
Enabled: false
Style/OpenStructUse:
Enabled: false