forked from dblock/iex-ruby-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop_todo.yml
98 lines (83 loc) · 2.47 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
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2023-09-17 09:23:21 UTC using RuboCop version 1.12.1.
# 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: 2
# Configuration parameters: AllowComments, AllowEmptyLambdas.
Lint/EmptyBlock:
Exclude:
- 'spec/iex/client_spec.rb'
- 'spec/iex/config/logger_spec.rb'
# Offense count: 65
# Configuration parameters: Prefixes.
# Prefixes: when, with, without
RSpec/ContextWording:
Enabled: false
# Offense count: 10
# Cop supports --auto-correct.
# Configuration parameters: SkipBlocks, EnforcedStyle.
# SupportedStyles: described_class, explicit
RSpec/DescribedClass:
Exclude:
- 'spec/iex/config/logger_spec.rb'
- 'spec/iex/resources/resource_spec.rb'
# Offense count: 29
# Configuration parameters: CountAsOne.
RSpec/ExampleLength:
Max: 55
# Offense count: 3
RSpec/ExpectInHook:
Exclude:
- 'spec/iex/config/logger_spec.rb'
# Offense count: 23
# Configuration parameters: Include, CustomTransform, IgnoreMethods, SpecSuffixOnly.
# Include: **/*_spec*rb*, **/spec/**/*
RSpec/FilePath:
Enabled: false
# Offense count: 51
RSpec/MultipleExpectations:
Max: 55
# Offense count: 347
# Configuration parameters: IgnoreSharedExamples.
RSpec/NamedSubject:
Enabled: false
# Offense count: 20
RSpec/NestedGroups:
Max: 6
# Offense count: 2
RSpec/RepeatedExampleGroupDescription:
Exclude:
- 'spec/iex/resources/resource_spec.rb'
# Offense count: 1
# Configuration parameters: IgnoredPatterns.
# SupportedStyles: snake_case, camelCase
RSpec/VariableName:
EnforcedStyle: snake_case
# Offense count: 1
# Configuration parameters: AllowedChars.
# AllowedChars: ©
Style/AsciiComments:
Exclude:
- 'lib/iex/resources/quote.rb'
# Offense count: 4
# Cop supports --auto-correct.
Style/GlobalStdStream:
Exclude:
- 'lib/iex/logger.rb'
- 'spec/iex/client_spec.rb'
- 'spec/iex/config/client_spec.rb'
- 'spec/iex/config/logger_spec.rb'
# Offense count: 1
# Cop supports --auto-correct.
Style/HashTransformValues:
Exclude:
- 'lib/iex/endpoints/ohlc.rb'
# Offense count: 7
# Cop supports --auto-correct.
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Layout/LineLength:
Max: 221