This repository has been archived by the owner on Jul 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.rubocop_todo.yml
128 lines (108 loc) · 3.17 KB
/
.rubocop_todo.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
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2018-03-21 14:10:49 -0400 using RuboCop version 0.53.0.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyleAlignWith, AutoCorrect, Severity.
# SupportedStylesAlignWith: keyword, variable, start_of_line
Layout/EndAlignment:
Exclude:
- 'app/controllers/registrations_controller.rb'
# Offense count: 2
Lint/RescueException:
Exclude:
- 'app/controllers/registrations_controller.rb'
- 'app/controllers/tenants_controller.rb'
# Offense count: 11
Metrics/AbcSize:
Max: 63
# Offense count: 4
# Configuration parameters: CountComments, ExcludedMethods.
Metrics/BlockLength:
Max: 99
# Offense count: 2
# Configuration parameters: CountBlocks.
Metrics/BlockNesting:
Max: 4
# Offense count: 1
# Configuration parameters: CountComments.
Metrics/ClassLength:
Max: 110
# Offense count: 3
Metrics/CyclomaticComplexity:
Max: 10
# Offense count: 9
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Metrics/LineLength:
Max: 198
# Offense count: 10
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 51
# Offense count: 2
Metrics/PerceivedComplexity:
Max: 14
# Offense count: 1
# Configuration parameters: NamePrefix, NamePrefixBlacklist, NameWhitelist, MethodDefinitionMacros.
# NamePrefix: is_, has_, have_
# NamePrefixBlacklist: is_, has_, have_
# NameWhitelist: is_a?
# MethodDefinitionMacros: define_method, define_singleton_method
Naming/PredicateName:
Exclude:
- 'spec/**/*'
- 'app/models/user.rb'
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: AutoCorrect, EnforcedStyle.
# SupportedStyles: nested, compact
Style/ClassAndModuleChildren:
Exclude:
- 'test/test_helper.rb'
# Offense count: 7
Style/CommentedKeyword:
Exclude:
- 'app/controllers/confirmations_controller.rb'
- 'app/controllers/registrations_controller.rb'
# Offense count: 38
Style/Documentation:
Enabled: false
# Offense count: 5
# Configuration parameters: MinBodyLength.
Style/GuardClause:
Exclude:
- 'app/controllers/home_controller.rb'
- 'app/controllers/projects_controller.rb'
- 'app/models/artifact.rb'
- 'app/models/project.rb'
- 'app/models/tenant.rb'
# Offense count: 1
Style/IfInsideElse:
Exclude:
- 'app/models/project.rb'
# Offense count: 1
Style/IfUnlessModifierOfIfUnless:
Exclude:
- 'app/controllers/registrations_controller.rb'
# Offense count: 2
Style/MixinUsage:
Exclude:
- 'bin/setup'
- 'bin/update'
# Offense count: 1
Style/MultilineTernaryOperator:
Exclude:
- 'app/controllers/registrations_controller.rb'
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: AutoCorrect, EnforcedStyle.
# SupportedStyles: predicate, comparison
Style/NumericPredicate:
Exclude:
- 'spec/**/*'
- 'app/models/project.rb'