forked from ruby-grape/grape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop_todo.yml
128 lines (108 loc) · 3.53 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 2017-12-10 01:15:22 +0900 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: 2
Lint/AmbiguousBlockAssociation:
Exclude:
- 'lib/grape/middleware/stack.rb'
- 'spec/grape/dsl/routing_spec.rb'
# Offense count: 1
Lint/RescueWithoutErrorClass:
Exclude:
- 'lib/grape/validations/validators/coerce.rb'
# Offense count: 49
Metrics/AbcSize:
Max: 44
# Offense count: 282
# Configuration parameters: CountComments, ExcludedMethods.
Metrics/BlockLength:
Max: 3125
# Offense count: 9
# Configuration parameters: CountComments.
Metrics/ClassLength:
Max: 288
# Offense count: 32
Metrics/CyclomaticComplexity:
Max: 14
# Offense count: 1159
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Metrics/LineLength:
Max: 215
# Offense count: 57
# Configuration parameters: CountComments.
Metrics/MethodLength:
Max: 33
# Offense count: 11
# Configuration parameters: CountComments.
Metrics/ModuleLength:
Max: 212
# Offense count: 21
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
# Configuration parameters: Blacklist.
# Blacklist: END, (?-mix:EO[A-Z]{1})
Naming/HeredocDelimiterNaming:
Exclude:
- 'lib/grape/router/route.rb'
# Offense count: 3
# Cop supports --auto-correct.
# Configuration parameters: AutoCorrect.
Performance/HashEachMethods:
Exclude:
- 'lib/grape/api.rb'
- 'lib/grape/middleware/versioner/header.rb'
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles, ProceduralMethods, FunctionalMethods, IgnoredMethods.
# SupportedStyles: line_count_based, semantic, braces_for_chaining
# ProceduralMethods: benchmark, bm, bmbm, create, each_with_object, measure, new, realtime, tap, with_object
# FunctionalMethods: let, let!, subject, watch
# IgnoredMethods: lambda, proc, it
Style/BlockDelimiters:
Exclude:
- 'spec/grape/middleware/formatter_spec.rb'
# Offense count: 1
Style/CommentedKeyword:
Exclude:
- 'spec/grape/validations_spec.rb'
# Offense count: 2
# Configuration parameters: SupportedStyles.
# SupportedStyles: annotated, template
Style/FormatStringToken:
EnforcedStyle: template
# Offense count: 2
Style/IdenticalConditionalBranches:
Exclude:
- 'lib/grape/dsl/desc.rb'
# Offense count: 1
Style/MethodMissing:
Exclude:
- 'lib/grape/router/attribute_translator.rb'
# Offense count: 1
Style/MultipleComparison:
Exclude:
- 'lib/grape/validations/types/custom_type_coercer.rb'