-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
.rubocop_todo.yml
119 lines (102 loc) · 3.3 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
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2019-12-09 18:07:42 +0100 using RuboCop version 0.51.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: 7
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: auto_detection, squiggly, active_support, powerpack, unindent
Layout/IndentHeredoc:
Exclude:
- 'lib/grape/router/route.rb'
- 'spec/grape/api_spec.rb'
- 'spec/grape/entity_spec.rb'
# Offense count: 1
Lint/AmbiguousBlockAssociation:
Exclude:
- 'spec/grape/dsl/routing_spec.rb'
# Offense count: 1
Lint/RescueWithoutErrorClass:
Exclude:
- 'lib/grape/validations/validators/coerce.rb'
# Offense count: 1
# Cop supports --auto-correct.
Lint/UnneededRequireStatement:
Exclude:
- 'lib/grape.rb'
# Offense count: 46
Metrics/AbcSize:
Max: 44
# Offense count: 7
# Configuration parameters: CountComments, ExcludedMethods.
Metrics/BlockLength:
Max: 182
# Offense count: 10
# Configuration parameters: CountComments.
Metrics/ClassLength:
Max: 305
# Offense count: 30
Metrics/CyclomaticComplexity:
Max: 14
# Offense count: 1300
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Metrics/LineLength:
Max: 215
# Offense count: 60
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 33
# Offense count: 12
# Configuration parameters: CountComments.
Metrics/ModuleLength:
Max: 220
# Offense count: 22
Metrics/PerceivedComplexity:
Max: 14
# Offense count: 4
# Configuration parameters: ExpectMatchingDefinition, Regex, IgnoreExecutableScripts, AllowedAcronyms.
# AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
Naming/FileName:
Exclude:
- 'Appraisals'
- 'Gemfile'
- 'Guardfile'
- 'Rakefile'
# Offense count: 1
# Cop supports --auto-correct.
Performance/RegexpMatch:
Exclude:
- 'lib/grape/middleware/versioner/path.rb'
# Offense count: 2
# Configuration parameters: SupportedStyles.
# SupportedStyles: annotated, template
Style/FormatStringToken:
EnforcedStyle: template
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: AutoCorrect, EnforcedStyle, SupportedStyles.
# SupportedStyles: predicate, comparison
Style/NumericPredicate:
Exclude:
- 'spec/**/*'
- 'lib/grape/middleware/formatter.rb'
# Offense count: 12
# Cop supports --auto-correct.
# Configuration parameters: ConvertCodeThatCanStartToReturnNil.
Style/SafeNavigation:
Exclude:
- 'lib/grape/api/instance.rb'
- 'lib/grape/dsl/desc.rb'
- 'lib/grape/dsl/helpers.rb'
- 'lib/grape/dsl/inside_route.rb'
- 'lib/grape/dsl/routing.rb'
- 'lib/grape/endpoint.rb'
- 'lib/grape/middleware/error.rb'
- 'lib/grape/middleware/versioner/accept_version_header.rb'
- 'lib/grape/middleware/versioner/header.rb'
- 'lib/grape/middleware/versioner/param.rb'
- 'lib/grape/middleware/versioner/path.rb'