cheesy-gallery 0.5.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +12 -0
- data/.gitignore +2 -0
- data/.travis.yml +1 -2
- data/CHANGELOG.md +11 -0
- data/README.md +40 -18
- data/lib/cheesy-gallery/base_image_file.rb +21 -0
- data/lib/cheesy-gallery/generator.rb +7 -5
- data/lib/cheesy-gallery/image_file.rb +22 -7
- data/lib/cheesy-gallery/version.rb +1 -1
- data/sorbet/rbi/gems/addressable.rbi +147 -0
- data/sorbet/rbi/gems/ast.rbi +49 -0
- data/sorbet/rbi/gems/codecov.rbi +49 -0
- data/sorbet/rbi/gems/coderay.rbi +285 -0
- data/sorbet/rbi/gems/colorator.rbi +60 -0
- data/sorbet/rbi/gems/concurrent-ruby.rbi +225 -0
- data/sorbet/rbi/gems/docile.rbi +36 -0
- data/sorbet/rbi/gems/ffi.rbi +560 -0
- data/sorbet/rbi/gems/forwardable-extended.rbi +24 -0
- data/sorbet/rbi/gems/i18n.rbi +108 -0
- data/sorbet/rbi/gems/jekyll-sass-converter.rbi +61 -0
- data/sorbet/rbi/gems/jekyll.rbi +726 -0
- data/sorbet/rbi/gems/kramdown.rbi +250 -0
- data/sorbet/rbi/gems/liquid.rbi +649 -0
- data/sorbet/rbi/gems/method_source.rbi +64 -0
- data/sorbet/rbi/gems/parallel.rbi +83 -0
- data/sorbet/rbi/gems/parser.rbi +1429 -0
- data/sorbet/rbi/gems/pathutil.rbi +188 -0
- data/sorbet/rbi/gems/pry.rbi +1898 -0
- data/sorbet/rbi/gems/public_suffix.rbi +104 -0
- data/sorbet/rbi/gems/rainbow.rbi +118 -0
- data/sorbet/rbi/gems/rake.rbi +647 -0
- data/sorbet/rbi/gems/regexp_parser.rbi +926 -0
- data/sorbet/rbi/gems/rexml.rbi +599 -0
- data/sorbet/rbi/gems/rmagick.rbi +1249 -0
- data/sorbet/rbi/gems/rspec-core.rbi +1894 -0
- data/sorbet/rbi/gems/rspec-expectations.rbi +1148 -0
- data/sorbet/rbi/gems/rspec-mocks.rbi +1091 -0
- data/sorbet/rbi/gems/rspec-support.rbi +280 -0
- data/sorbet/rbi/gems/rspec.rbi +15 -0
- data/sorbet/rbi/gems/rubocop-ast.rbi +1357 -0
- data/sorbet/rbi/gems/rubocop.rbi +8027 -0
- data/sorbet/rbi/gems/ruby-progressbar.rbi +304 -0
- data/sorbet/rbi/gems/safe_yaml.rbi +124 -0
- data/sorbet/rbi/gems/sassc.rbi +532 -0
- data/sorbet/rbi/gems/simplecov-html.rbi +35 -0
- data/sorbet/rbi/gems/simplecov.rbi +419 -0
- data/sorbet/rbi/gems/unicode-display_width.rbi +22 -0
- data/sorbet/rbi/hidden-definitions/errors.txt +3516 -24801
- data/sorbet/rbi/hidden-definitions/hidden.rbi +7269 -39103
- data/sorbet/rbi/sorbet-typed/lib/rake/all/rake.rbi +645 -0
- data/sorbet/rbi/sorbet-typed/lib/rspec-core/all/rspec-core.rbi +1891 -0
- data/sorbet/rbi/sorbet-typed/lib/rubocop/>=1.8/rubocop.rbi +7799 -0
- data/sorbet/rbi/todo.rbi +6 -0
- metadata +47 -5
- data/Gemfile.lock +0 -134
- data/sorbet/rbi/sorbet-typed/lib/rubocop/~>0.85/rubocop.rbi +0 -2072
data/sorbet/rbi/todo.rbi
ADDED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cheesy-gallery
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Schmitt
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-07-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -157,13 +157,14 @@ executables: []
|
|
157
157
|
extensions: []
|
158
158
|
extra_rdoc_files: []
|
159
159
|
files:
|
160
|
+
- ".github/dependabot.yml"
|
160
161
|
- ".gitignore"
|
161
162
|
- ".rspec"
|
162
163
|
- ".rubocop.yml"
|
163
164
|
- ".travis.yml"
|
165
|
+
- CHANGELOG.md
|
164
166
|
- CODE_OF_CONDUCT.md
|
165
167
|
- Gemfile
|
166
|
-
- Gemfile.lock
|
167
168
|
- LICENSE.md
|
168
169
|
- README.md
|
169
170
|
- Rakefile
|
@@ -178,11 +179,52 @@ files:
|
|
178
179
|
- lib/cheesy-gallery/image_thumb.rb
|
179
180
|
- lib/cheesy-gallery/version.rb
|
180
181
|
- sorbet/config
|
182
|
+
- sorbet/rbi/gems/addressable.rbi
|
183
|
+
- sorbet/rbi/gems/ast.rbi
|
184
|
+
- sorbet/rbi/gems/codecov.rbi
|
185
|
+
- sorbet/rbi/gems/coderay.rbi
|
186
|
+
- sorbet/rbi/gems/colorator.rbi
|
187
|
+
- sorbet/rbi/gems/concurrent-ruby.rbi
|
188
|
+
- sorbet/rbi/gems/docile.rbi
|
189
|
+
- sorbet/rbi/gems/ffi.rbi
|
190
|
+
- sorbet/rbi/gems/forwardable-extended.rbi
|
191
|
+
- sorbet/rbi/gems/i18n.rbi
|
192
|
+
- sorbet/rbi/gems/jekyll-sass-converter.rbi
|
193
|
+
- sorbet/rbi/gems/jekyll.rbi
|
194
|
+
- sorbet/rbi/gems/kramdown.rbi
|
195
|
+
- sorbet/rbi/gems/liquid.rbi
|
196
|
+
- sorbet/rbi/gems/method_source.rbi
|
197
|
+
- sorbet/rbi/gems/parallel.rbi
|
198
|
+
- sorbet/rbi/gems/parser.rbi
|
199
|
+
- sorbet/rbi/gems/pathutil.rbi
|
200
|
+
- sorbet/rbi/gems/pry.rbi
|
201
|
+
- sorbet/rbi/gems/public_suffix.rbi
|
202
|
+
- sorbet/rbi/gems/rainbow.rbi
|
203
|
+
- sorbet/rbi/gems/rake.rbi
|
204
|
+
- sorbet/rbi/gems/regexp_parser.rbi
|
205
|
+
- sorbet/rbi/gems/rexml.rbi
|
206
|
+
- sorbet/rbi/gems/rmagick.rbi
|
207
|
+
- sorbet/rbi/gems/rspec-core.rbi
|
208
|
+
- sorbet/rbi/gems/rspec-expectations.rbi
|
209
|
+
- sorbet/rbi/gems/rspec-mocks.rbi
|
210
|
+
- sorbet/rbi/gems/rspec-support.rbi
|
211
|
+
- sorbet/rbi/gems/rspec.rbi
|
212
|
+
- sorbet/rbi/gems/rubocop-ast.rbi
|
213
|
+
- sorbet/rbi/gems/rubocop.rbi
|
214
|
+
- sorbet/rbi/gems/ruby-progressbar.rbi
|
215
|
+
- sorbet/rbi/gems/safe_yaml.rbi
|
216
|
+
- sorbet/rbi/gems/sassc.rbi
|
217
|
+
- sorbet/rbi/gems/simplecov-html.rbi
|
218
|
+
- sorbet/rbi/gems/simplecov.rbi
|
219
|
+
- sorbet/rbi/gems/unicode-display_width.rbi
|
181
220
|
- sorbet/rbi/hidden-definitions/errors.txt
|
182
221
|
- sorbet/rbi/hidden-definitions/hidden.rbi
|
183
222
|
- sorbet/rbi/rmagick.rbi
|
184
223
|
- sorbet/rbi/sorbet-typed/lib/rainbow/all/rainbow.rbi
|
185
|
-
- sorbet/rbi/sorbet-typed/lib/
|
224
|
+
- sorbet/rbi/sorbet-typed/lib/rake/all/rake.rbi
|
225
|
+
- sorbet/rbi/sorbet-typed/lib/rspec-core/all/rspec-core.rbi
|
226
|
+
- sorbet/rbi/sorbet-typed/lib/rubocop/>=1.8/rubocop.rbi
|
227
|
+
- sorbet/rbi/todo.rbi
|
186
228
|
homepage: https://github.com/DavidS/cheesy-gallery
|
187
229
|
licenses: []
|
188
230
|
metadata:
|
@@ -204,7 +246,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
204
246
|
- !ruby/object:Gem::Version
|
205
247
|
version: '0'
|
206
248
|
requirements: []
|
207
|
-
rubygems_version: 3.
|
249
|
+
rubygems_version: 3.2.5
|
208
250
|
signing_key:
|
209
251
|
specification_version: 4
|
210
252
|
summary: A jekyll plugin for building galleries.
|
data/Gemfile.lock
DELETED
@@ -1,134 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
cheesy-gallery (0.5.0)
|
5
|
-
jekyll (~> 4.0)
|
6
|
-
rmagick (~> 4.0)
|
7
|
-
sorbet-runtime
|
8
|
-
|
9
|
-
GEM
|
10
|
-
remote: https://rubygems.org/
|
11
|
-
specs:
|
12
|
-
addressable (2.7.0)
|
13
|
-
public_suffix (>= 2.0.2, < 5.0)
|
14
|
-
ast (2.4.1)
|
15
|
-
codecov (0.2.8)
|
16
|
-
json
|
17
|
-
simplecov
|
18
|
-
coderay (1.1.3)
|
19
|
-
colorator (1.1.0)
|
20
|
-
concurrent-ruby (1.1.7)
|
21
|
-
diff-lcs (1.4.4)
|
22
|
-
docile (1.3.2)
|
23
|
-
em-websocket (0.5.1)
|
24
|
-
eventmachine (>= 0.12.9)
|
25
|
-
http_parser.rb (~> 0.6.0)
|
26
|
-
eventmachine (1.2.7)
|
27
|
-
ffi (1.13.1)
|
28
|
-
forwardable-extended (2.6.0)
|
29
|
-
http_parser.rb (0.6.0)
|
30
|
-
i18n (1.8.5)
|
31
|
-
concurrent-ruby (~> 1.0)
|
32
|
-
jekyll (4.1.1)
|
33
|
-
addressable (~> 2.4)
|
34
|
-
colorator (~> 1.0)
|
35
|
-
em-websocket (~> 0.5)
|
36
|
-
i18n (~> 1.0)
|
37
|
-
jekyll-sass-converter (~> 2.0)
|
38
|
-
jekyll-watch (~> 2.0)
|
39
|
-
kramdown (~> 2.1)
|
40
|
-
kramdown-parser-gfm (~> 1.0)
|
41
|
-
liquid (~> 4.0)
|
42
|
-
mercenary (~> 0.4.0)
|
43
|
-
pathutil (~> 0.9)
|
44
|
-
rouge (~> 3.0)
|
45
|
-
safe_yaml (~> 1.0)
|
46
|
-
terminal-table (~> 1.8)
|
47
|
-
jekyll-sass-converter (2.1.0)
|
48
|
-
sassc (> 2.0.1, < 3.0)
|
49
|
-
jekyll-watch (2.2.1)
|
50
|
-
listen (~> 3.0)
|
51
|
-
json (2.3.1)
|
52
|
-
kramdown (2.3.0)
|
53
|
-
rexml
|
54
|
-
kramdown-parser-gfm (1.1.0)
|
55
|
-
kramdown (~> 2.0)
|
56
|
-
liquid (4.0.3)
|
57
|
-
listen (3.2.1)
|
58
|
-
rb-fsevent (~> 0.10, >= 0.10.3)
|
59
|
-
rb-inotify (~> 0.9, >= 0.9.10)
|
60
|
-
mercenary (0.4.0)
|
61
|
-
method_source (1.0.0)
|
62
|
-
parallel (1.19.2)
|
63
|
-
parser (2.7.1.4)
|
64
|
-
ast (~> 2.4.1)
|
65
|
-
pathutil (0.16.2)
|
66
|
-
forwardable-extended (~> 2.6)
|
67
|
-
pry (0.13.1)
|
68
|
-
coderay (~> 1.1)
|
69
|
-
method_source (~> 1.0)
|
70
|
-
public_suffix (4.0.5)
|
71
|
-
rainbow (3.0.0)
|
72
|
-
rake (13.0.1)
|
73
|
-
rb-fsevent (0.10.4)
|
74
|
-
rb-inotify (0.10.1)
|
75
|
-
ffi (~> 1.0)
|
76
|
-
regexp_parser (1.7.1)
|
77
|
-
rexml (3.2.4)
|
78
|
-
rmagick (4.1.2)
|
79
|
-
rouge (3.22.0)
|
80
|
-
rspec (3.9.0)
|
81
|
-
rspec-core (~> 3.9.0)
|
82
|
-
rspec-expectations (~> 3.9.0)
|
83
|
-
rspec-mocks (~> 3.9.0)
|
84
|
-
rspec-core (3.9.2)
|
85
|
-
rspec-support (~> 3.9.3)
|
86
|
-
rspec-expectations (3.9.2)
|
87
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
88
|
-
rspec-support (~> 3.9.0)
|
89
|
-
rspec-mocks (3.9.1)
|
90
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
91
|
-
rspec-support (~> 3.9.0)
|
92
|
-
rspec-support (3.9.3)
|
93
|
-
rubocop (0.89.1)
|
94
|
-
parallel (~> 1.10)
|
95
|
-
parser (>= 2.7.1.1)
|
96
|
-
rainbow (>= 2.2.2, < 4.0)
|
97
|
-
regexp_parser (>= 1.7)
|
98
|
-
rexml
|
99
|
-
rubocop-ast (>= 0.3.0, < 1.0)
|
100
|
-
ruby-progressbar (~> 1.7)
|
101
|
-
unicode-display_width (>= 1.4.0, < 2.0)
|
102
|
-
rubocop-ast (0.3.0)
|
103
|
-
parser (>= 2.7.1.4)
|
104
|
-
ruby-progressbar (1.10.1)
|
105
|
-
safe_yaml (1.0.5)
|
106
|
-
sassc (2.4.0)
|
107
|
-
ffi (~> 1.9)
|
108
|
-
simplecov (0.19.0)
|
109
|
-
docile (~> 1.1)
|
110
|
-
simplecov-html (~> 0.11)
|
111
|
-
simplecov-html (0.12.2)
|
112
|
-
sorbet (0.5.5879)
|
113
|
-
sorbet-static (= 0.5.5879)
|
114
|
-
sorbet-runtime (0.5.5883)
|
115
|
-
sorbet-static (0.5.5879-universal-darwin-14)
|
116
|
-
terminal-table (1.8.0)
|
117
|
-
unicode-display_width (~> 1.1, >= 1.1.1)
|
118
|
-
unicode-display_width (1.7.0)
|
119
|
-
|
120
|
-
PLATFORMS
|
121
|
-
ruby
|
122
|
-
|
123
|
-
DEPENDENCIES
|
124
|
-
bundler (~> 2.1)
|
125
|
-
cheesy-gallery!
|
126
|
-
codecov
|
127
|
-
pry
|
128
|
-
rake (~> 13.0)
|
129
|
-
rspec (~> 3.0)
|
130
|
-
rubocop
|
131
|
-
sorbet
|
132
|
-
|
133
|
-
BUNDLED WITH
|
134
|
-
2.1.4
|
@@ -1,2072 +0,0 @@
|
|
1
|
-
# This file is autogenerated. Do not edit it by hand. Regenerate it with:
|
2
|
-
# srb rbi sorbet-typed
|
3
|
-
#
|
4
|
-
# If you would like to make changes to this file, great! Please upstream any changes you make here:
|
5
|
-
#
|
6
|
-
# https://github.com/sorbet/sorbet-typed/edit/master/lib/rubocop/~>0.85/rubocop.rbi
|
7
|
-
#
|
8
|
-
# typed: strict
|
9
|
-
|
10
|
-
class RuboCop::CLI
|
11
|
-
STATUS_ERROR = ::T.let(nil, ::T.untyped)
|
12
|
-
STATUS_INTERRUPTED = ::T.let(nil, ::T.untyped)
|
13
|
-
STATUS_OFFENSES = ::T.let(nil, ::T.untyped)
|
14
|
-
STATUS_SUCCESS = ::T.let(nil, ::T.untyped)
|
15
|
-
end
|
16
|
-
|
17
|
-
class RuboCop::CLI::Command::AutoGenerateConfig
|
18
|
-
PHASE_1 = ::T.let(nil, ::T.untyped)
|
19
|
-
PHASE_1_DISABLED = ::T.let(nil, ::T.untyped)
|
20
|
-
PHASE_1_OVERRIDDEN = ::T.let(nil, ::T.untyped)
|
21
|
-
PHASE_2 = ::T.let(nil, ::T.untyped)
|
22
|
-
end
|
23
|
-
|
24
|
-
class RuboCop::CLI::Command::InitDotfile
|
25
|
-
DOTFILE = ::T.let(nil, ::T.untyped)
|
26
|
-
end
|
27
|
-
|
28
|
-
class RuboCop::CommentConfig
|
29
|
-
COMMENT_DIRECTIVE_REGEXP = ::T.let(nil, ::T.untyped)
|
30
|
-
COPS_PATTERN = ::T.let(nil, ::T.untyped)
|
31
|
-
COP_NAMES_PATTERN = ::T.let(nil, ::T.untyped)
|
32
|
-
COP_NAME_PATTERN = ::T.let(nil, ::T.untyped)
|
33
|
-
REDUNDANT_DISABLE = ::T.let(nil, ::T.untyped)
|
34
|
-
end
|
35
|
-
|
36
|
-
class RuboCop::ConfigLoader
|
37
|
-
AUTO_GENERATED_FILE = ::T.let(nil, ::T.untyped)
|
38
|
-
DEFAULT_FILE = ::T.let(nil, ::T.untyped)
|
39
|
-
DOTFILE = ::T.let(nil, ::T.untyped)
|
40
|
-
RUBOCOP_HOME = ::T.let(nil, ::T.untyped)
|
41
|
-
XDG_CONFIG = ::T.let(nil, ::T.untyped)
|
42
|
-
end
|
43
|
-
|
44
|
-
class RuboCop::ConfigLoader
|
45
|
-
extend ::RuboCop::FileFinder
|
46
|
-
end
|
47
|
-
|
48
|
-
class RuboCop::ConfigObsoletion
|
49
|
-
MOVED_COPS = ::T.let(nil, ::T.untyped)
|
50
|
-
OBSOLETE_COPS = ::T.let(nil, ::T.untyped)
|
51
|
-
OBSOLETE_ENFORCED_STYLES = ::T.let(nil, ::T.untyped)
|
52
|
-
OBSOLETE_PARAMETERS = ::T.let(nil, ::T.untyped)
|
53
|
-
REMOVED_COPS = ::T.let(nil, ::T.untyped)
|
54
|
-
REMOVED_COPS_WITH_REASON = ::T.let(nil, ::T.untyped)
|
55
|
-
RENAMED_COPS = ::T.let(nil, ::T.untyped)
|
56
|
-
SPLIT_COPS = ::T.let(nil, ::T.untyped)
|
57
|
-
end
|
58
|
-
|
59
|
-
class RuboCop::ConfigValidator
|
60
|
-
COMMON_PARAMS = ::T.let(nil, ::T.untyped)
|
61
|
-
INTERNAL_PARAMS = ::T.let(nil, ::T.untyped)
|
62
|
-
NEW_COPS_VALUES = ::T.let(nil, ::T.untyped)
|
63
|
-
end
|
64
|
-
|
65
|
-
module RuboCop::Cop::Alignment
|
66
|
-
SPACE = ::T.let(nil, ::T.untyped)
|
67
|
-
end
|
68
|
-
|
69
|
-
class RuboCop::Cop::AmbiguousCopName
|
70
|
-
MSG = ::T.let(nil, ::T.untyped)
|
71
|
-
end
|
72
|
-
|
73
|
-
class RuboCop::Cop::Badge::InvalidBadge
|
74
|
-
MSG = ::T.let(nil, ::T.untyped)
|
75
|
-
end
|
76
|
-
|
77
|
-
class RuboCop::Cop::Bundler::DuplicatedGem
|
78
|
-
MSG = ::T.let(nil, ::T.untyped)
|
79
|
-
end
|
80
|
-
|
81
|
-
class RuboCop::Cop::Bundler::GemComment
|
82
|
-
CHECKED_OPTIONS_CONFIG = ::T.let(nil, ::T.untyped)
|
83
|
-
MSG = ::T.let(nil, ::T.untyped)
|
84
|
-
VERSION_SPECIFIERS_OPTION = ::T.let(nil, ::T.untyped)
|
85
|
-
end
|
86
|
-
|
87
|
-
class RuboCop::Cop::Bundler::InsecureProtocolSource
|
88
|
-
MSG = ::T.let(nil, ::T.untyped)
|
89
|
-
end
|
90
|
-
|
91
|
-
class RuboCop::Cop::Bundler::OrderedGems
|
92
|
-
MSG = ::T.let(nil, ::T.untyped)
|
93
|
-
end
|
94
|
-
|
95
|
-
module RuboCop::Cop::ConfigurableNaming
|
96
|
-
FORMATS = ::T.let(nil, ::T.untyped)
|
97
|
-
end
|
98
|
-
|
99
|
-
module RuboCop::Cop::ConfigurableNumbering
|
100
|
-
FORMATS = ::T.let(nil, ::T.untyped)
|
101
|
-
end
|
102
|
-
|
103
|
-
module RuboCop::Cop::DefNode
|
104
|
-
NON_PUBLIC_MODIFIERS = ::T.let(nil, ::T.untyped)
|
105
|
-
end
|
106
|
-
|
107
|
-
class RuboCop::Cop::EachToForCorrector
|
108
|
-
CORRECTION_WITHOUT_ARGUMENTS = ::T.let(nil, ::T.untyped)
|
109
|
-
CORRECTION_WITH_ARGUMENTS = ::T.let(nil, ::T.untyped)
|
110
|
-
end
|
111
|
-
|
112
|
-
module RuboCop::Cop::EndKeywordAlignment
|
113
|
-
MSG = ::T.let(nil, ::T.untyped)
|
114
|
-
end
|
115
|
-
|
116
|
-
class RuboCop::Cop::ForToEachCorrector
|
117
|
-
CORRECTION = ::T.let(nil, ::T.untyped)
|
118
|
-
end
|
119
|
-
|
120
|
-
module RuboCop::Cop::FrozenStringLiteral
|
121
|
-
FROZEN_STRING_LITERAL = ::T.let(nil, ::T.untyped)
|
122
|
-
FROZEN_STRING_LITERAL_ENABLED = ::T.let(nil, ::T.untyped)
|
123
|
-
FROZEN_STRING_LITERAL_TYPES = ::T.let(nil, ::T.untyped)
|
124
|
-
end
|
125
|
-
|
126
|
-
class RuboCop::Cop::Gemspec::DuplicatedAssignment
|
127
|
-
MSG = ::T.let(nil, ::T.untyped)
|
128
|
-
end
|
129
|
-
|
130
|
-
class RuboCop::Cop::Gemspec::OrderedDependencies
|
131
|
-
MSG = ::T.let(nil, ::T.untyped)
|
132
|
-
end
|
133
|
-
|
134
|
-
class RuboCop::Cop::Gemspec::RequiredRubyVersion
|
135
|
-
MSG = ::T.let(nil, ::T.untyped)
|
136
|
-
end
|
137
|
-
|
138
|
-
class RuboCop::Cop::Gemspec::RubyVersionGlobalsUsage
|
139
|
-
MSG = ::T.let(nil, ::T.untyped)
|
140
|
-
end
|
141
|
-
|
142
|
-
class RuboCop::Cop::Generator
|
143
|
-
CONFIGURATION_ADDED_MESSAGE = ::T.let(nil, ::T.untyped)
|
144
|
-
SOURCE_TEMPLATE = ::T.let(nil, ::T.untyped)
|
145
|
-
SPEC_TEMPLATE = ::T.let(nil, ::T.untyped)
|
146
|
-
end
|
147
|
-
|
148
|
-
class RuboCop::Cop::Generator::ConfigurationInjector
|
149
|
-
TEMPLATE = ::T.let(nil, ::T.untyped)
|
150
|
-
end
|
151
|
-
|
152
|
-
class RuboCop::Cop::Generator::RequireFileInjector
|
153
|
-
REQUIRE_PATH = ::T.let(nil, ::T.untyped)
|
154
|
-
end
|
155
|
-
|
156
|
-
module RuboCop::Cop::Heredoc
|
157
|
-
OPENING_DELIMITER = ::T.let(nil, ::T.untyped)
|
158
|
-
end
|
159
|
-
|
160
|
-
class RuboCop::Cop::Layout::AccessModifierIndentation
|
161
|
-
MSG = ::T.let(nil, ::T.untyped)
|
162
|
-
end
|
163
|
-
|
164
|
-
class RuboCop::Cop::Layout::ArgumentAlignment
|
165
|
-
ALIGN_PARAMS_MSG = ::T.let(nil, ::T.untyped)
|
166
|
-
FIXED_INDENT_MSG = ::T.let(nil, ::T.untyped)
|
167
|
-
end
|
168
|
-
|
169
|
-
class RuboCop::Cop::Layout::ArrayAlignment
|
170
|
-
ALIGN_ELEMENTS_MSG = ::T.let(nil, ::T.untyped)
|
171
|
-
FIXED_INDENT_MSG = ::T.let(nil, ::T.untyped)
|
172
|
-
end
|
173
|
-
|
174
|
-
class RuboCop::Cop::Layout::AssignmentIndentation
|
175
|
-
MSG = ::T.let(nil, ::T.untyped)
|
176
|
-
end
|
177
|
-
|
178
|
-
class RuboCop::Cop::Layout::BlockAlignment
|
179
|
-
MSG = ::T.let(nil, ::T.untyped)
|
180
|
-
end
|
181
|
-
|
182
|
-
class RuboCop::Cop::Layout::BlockEndNewline
|
183
|
-
MSG = ::T.let(nil, ::T.untyped)
|
184
|
-
end
|
185
|
-
|
186
|
-
class RuboCop::Cop::Layout::CaseIndentation
|
187
|
-
MSG = ::T.let(nil, ::T.untyped)
|
188
|
-
end
|
189
|
-
|
190
|
-
class RuboCop::Cop::Layout::ClassStructure
|
191
|
-
HUMANIZED_NODE_TYPE = ::T.let(nil, ::T.untyped)
|
192
|
-
MSG = ::T.let(nil, ::T.untyped)
|
193
|
-
VISIBILITY_SCOPES = ::T.let(nil, ::T.untyped)
|
194
|
-
end
|
195
|
-
|
196
|
-
class RuboCop::Cop::Layout::ClosingHeredocIndentation
|
197
|
-
MSG = ::T.let(nil, ::T.untyped)
|
198
|
-
MSG_ARG = ::T.let(nil, ::T.untyped)
|
199
|
-
SIMPLE_HEREDOC = ::T.let(nil, ::T.untyped)
|
200
|
-
end
|
201
|
-
|
202
|
-
class RuboCop::Cop::Layout::ClosingParenthesisIndentation
|
203
|
-
MSG_ALIGN = ::T.let(nil, ::T.untyped)
|
204
|
-
MSG_INDENT = ::T.let(nil, ::T.untyped)
|
205
|
-
end
|
206
|
-
|
207
|
-
class RuboCop::Cop::Layout::CommentIndentation
|
208
|
-
MSG = ::T.let(nil, ::T.untyped)
|
209
|
-
end
|
210
|
-
|
211
|
-
class RuboCop::Cop::Layout::ConditionPosition
|
212
|
-
MSG = ::T.let(nil, ::T.untyped)
|
213
|
-
end
|
214
|
-
|
215
|
-
class RuboCop::Cop::Layout::DefEndAlignment
|
216
|
-
MSG = ::T.let(nil, ::T.untyped)
|
217
|
-
end
|
218
|
-
|
219
|
-
class RuboCop::Cop::Layout::ElseAlignment
|
220
|
-
MSG = ::T.let(nil, ::T.untyped)
|
221
|
-
end
|
222
|
-
|
223
|
-
class RuboCop::Cop::Layout::EmptyComment
|
224
|
-
MSG = ::T.let(nil, ::T.untyped)
|
225
|
-
end
|
226
|
-
|
227
|
-
class RuboCop::Cop::Layout::EmptyLineAfterGuardClause
|
228
|
-
END_OF_HEREDOC_LINE = ::T.let(nil, ::T.untyped)
|
229
|
-
MSG = ::T.let(nil, ::T.untyped)
|
230
|
-
end
|
231
|
-
|
232
|
-
class RuboCop::Cop::Layout::EmptyLineAfterMagicComment
|
233
|
-
MSG = ::T.let(nil, ::T.untyped)
|
234
|
-
end
|
235
|
-
|
236
|
-
class RuboCop::Cop::Layout::EmptyLineBetweenDefs
|
237
|
-
MSG = ::T.let(nil, ::T.untyped)
|
238
|
-
end
|
239
|
-
|
240
|
-
class RuboCop::Cop::Layout::EmptyLines
|
241
|
-
LINE_OFFSET = ::T.let(nil, ::T.untyped)
|
242
|
-
MSG = ::T.let(nil, ::T.untyped)
|
243
|
-
end
|
244
|
-
|
245
|
-
class RuboCop::Cop::Layout::EmptyLinesAroundAccessModifier
|
246
|
-
MSG_AFTER = ::T.let(nil, ::T.untyped)
|
247
|
-
MSG_AFTER_FOR_ONLY_BEFORE = ::T.let(nil, ::T.untyped)
|
248
|
-
MSG_BEFORE_AND_AFTER = ::T.let(nil, ::T.untyped)
|
249
|
-
MSG_BEFORE_FOR_ONLY_BEFORE = ::T.let(nil, ::T.untyped)
|
250
|
-
end
|
251
|
-
|
252
|
-
class RuboCop::Cop::Layout::EmptyLinesAroundArguments
|
253
|
-
MSG = ::T.let(nil, ::T.untyped)
|
254
|
-
end
|
255
|
-
|
256
|
-
class RuboCop::Cop::Layout::EmptyLinesAroundAttributeAccessor
|
257
|
-
MSG = ::T.let(nil, ::T.untyped)
|
258
|
-
end
|
259
|
-
|
260
|
-
class RuboCop::Cop::Layout::EmptyLinesAroundBeginBody
|
261
|
-
KIND = ::T.let(nil, ::T.untyped)
|
262
|
-
end
|
263
|
-
|
264
|
-
class RuboCop::Cop::Layout::EmptyLinesAroundBlockBody
|
265
|
-
KIND = ::T.let(nil, ::T.untyped)
|
266
|
-
end
|
267
|
-
|
268
|
-
module RuboCop::Cop::Layout::EmptyLinesAroundBody
|
269
|
-
MSG_DEFERRED = ::T.let(nil, ::T.untyped)
|
270
|
-
MSG_EXTRA = ::T.let(nil, ::T.untyped)
|
271
|
-
MSG_MISSING = ::T.let(nil, ::T.untyped)
|
272
|
-
end
|
273
|
-
|
274
|
-
class RuboCop::Cop::Layout::EmptyLinesAroundClassBody
|
275
|
-
KIND = ::T.let(nil, ::T.untyped)
|
276
|
-
end
|
277
|
-
|
278
|
-
class RuboCop::Cop::Layout::EmptyLinesAroundExceptionHandlingKeywords
|
279
|
-
MSG = ::T.let(nil, ::T.untyped)
|
280
|
-
end
|
281
|
-
|
282
|
-
class RuboCop::Cop::Layout::EmptyLinesAroundMethodBody
|
283
|
-
KIND = ::T.let(nil, ::T.untyped)
|
284
|
-
end
|
285
|
-
|
286
|
-
class RuboCop::Cop::Layout::EmptyLinesAroundModuleBody
|
287
|
-
KIND = ::T.let(nil, ::T.untyped)
|
288
|
-
end
|
289
|
-
|
290
|
-
class RuboCop::Cop::Layout::EndOfLine
|
291
|
-
MSG_DETECTED = ::T.let(nil, ::T.untyped)
|
292
|
-
MSG_MISSING = ::T.let(nil, ::T.untyped)
|
293
|
-
end
|
294
|
-
|
295
|
-
class RuboCop::Cop::Layout::ExtraSpacing
|
296
|
-
MSG_UNALIGNED_ASGN = ::T.let(nil, ::T.untyped)
|
297
|
-
MSG_UNNECESSARY = ::T.let(nil, ::T.untyped)
|
298
|
-
end
|
299
|
-
|
300
|
-
class RuboCop::Cop::Layout::FirstArgumentIndentation
|
301
|
-
MSG = ::T.let(nil, ::T.untyped)
|
302
|
-
end
|
303
|
-
|
304
|
-
class RuboCop::Cop::Layout::FirstArrayElementIndentation
|
305
|
-
MSG = ::T.let(nil, ::T.untyped)
|
306
|
-
end
|
307
|
-
|
308
|
-
class RuboCop::Cop::Layout::FirstArrayElementLineBreak
|
309
|
-
MSG = ::T.let(nil, ::T.untyped)
|
310
|
-
end
|
311
|
-
|
312
|
-
class RuboCop::Cop::Layout::FirstHashElementIndentation
|
313
|
-
MSG = ::T.let(nil, ::T.untyped)
|
314
|
-
end
|
315
|
-
|
316
|
-
class RuboCop::Cop::Layout::FirstHashElementLineBreak
|
317
|
-
MSG = ::T.let(nil, ::T.untyped)
|
318
|
-
end
|
319
|
-
|
320
|
-
class RuboCop::Cop::Layout::FirstMethodArgumentLineBreak
|
321
|
-
MSG = ::T.let(nil, ::T.untyped)
|
322
|
-
end
|
323
|
-
|
324
|
-
class RuboCop::Cop::Layout::FirstMethodParameterLineBreak
|
325
|
-
MSG = ::T.let(nil, ::T.untyped)
|
326
|
-
end
|
327
|
-
|
328
|
-
class RuboCop::Cop::Layout::FirstParameterIndentation
|
329
|
-
MSG = ::T.let(nil, ::T.untyped)
|
330
|
-
end
|
331
|
-
|
332
|
-
class RuboCop::Cop::Layout::HashAlignment
|
333
|
-
MESSAGES = ::T.let(nil, ::T.untyped)
|
334
|
-
end
|
335
|
-
|
336
|
-
class RuboCop::Cop::Layout::HeredocArgumentClosingParenthesis
|
337
|
-
MSG = ::T.let(nil, ::T.untyped)
|
338
|
-
end
|
339
|
-
|
340
|
-
class RuboCop::Cop::Layout::HeredocIndentation
|
341
|
-
TYPE_MSG = ::T.let(nil, ::T.untyped)
|
342
|
-
WIDTH_MSG = ::T.let(nil, ::T.untyped)
|
343
|
-
end
|
344
|
-
|
345
|
-
class RuboCop::Cop::Layout::IndentationConsistency
|
346
|
-
MSG = ::T.let(nil, ::T.untyped)
|
347
|
-
end
|
348
|
-
|
349
|
-
class RuboCop::Cop::Layout::IndentationStyle
|
350
|
-
MSG = ::T.let(nil, ::T.untyped)
|
351
|
-
end
|
352
|
-
|
353
|
-
class RuboCop::Cop::Layout::IndentationWidth
|
354
|
-
MSG = ::T.let(nil, ::T.untyped)
|
355
|
-
end
|
356
|
-
|
357
|
-
class RuboCop::Cop::Layout::InitialIndentation
|
358
|
-
MSG = ::T.let(nil, ::T.untyped)
|
359
|
-
end
|
360
|
-
|
361
|
-
class RuboCop::Cop::Layout::LeadingCommentSpace
|
362
|
-
MSG = ::T.let(nil, ::T.untyped)
|
363
|
-
end
|
364
|
-
|
365
|
-
class RuboCop::Cop::Layout::LeadingEmptyLines
|
366
|
-
MSG = ::T.let(nil, ::T.untyped)
|
367
|
-
end
|
368
|
-
|
369
|
-
class RuboCop::Cop::Layout::LineLength
|
370
|
-
MSG = ::T.let(nil, ::T.untyped)
|
371
|
-
end
|
372
|
-
|
373
|
-
class RuboCop::Cop::Layout::MultilineArrayBraceLayout
|
374
|
-
ALWAYS_NEW_LINE_MESSAGE = ::T.let(nil, ::T.untyped)
|
375
|
-
ALWAYS_SAME_LINE_MESSAGE = ::T.let(nil, ::T.untyped)
|
376
|
-
NEW_LINE_MESSAGE = ::T.let(nil, ::T.untyped)
|
377
|
-
SAME_LINE_MESSAGE = ::T.let(nil, ::T.untyped)
|
378
|
-
end
|
379
|
-
|
380
|
-
class RuboCop::Cop::Layout::MultilineArrayLineBreaks
|
381
|
-
MSG = ::T.let(nil, ::T.untyped)
|
382
|
-
end
|
383
|
-
|
384
|
-
class RuboCop::Cop::Layout::MultilineAssignmentLayout
|
385
|
-
NEW_LINE_OFFENSE = ::T.let(nil, ::T.untyped)
|
386
|
-
SAME_LINE_OFFENSE = ::T.let(nil, ::T.untyped)
|
387
|
-
end
|
388
|
-
|
389
|
-
class RuboCop::Cop::Layout::MultilineBlockLayout
|
390
|
-
ARG_MSG = ::T.let(nil, ::T.untyped)
|
391
|
-
MSG = ::T.let(nil, ::T.untyped)
|
392
|
-
PIPE_SIZE = ::T.let(nil, ::T.untyped)
|
393
|
-
end
|
394
|
-
|
395
|
-
class RuboCop::Cop::Layout::MultilineHashBraceLayout
|
396
|
-
ALWAYS_NEW_LINE_MESSAGE = ::T.let(nil, ::T.untyped)
|
397
|
-
ALWAYS_SAME_LINE_MESSAGE = ::T.let(nil, ::T.untyped)
|
398
|
-
NEW_LINE_MESSAGE = ::T.let(nil, ::T.untyped)
|
399
|
-
SAME_LINE_MESSAGE = ::T.let(nil, ::T.untyped)
|
400
|
-
end
|
401
|
-
|
402
|
-
class RuboCop::Cop::Layout::MultilineHashKeyLineBreaks
|
403
|
-
MSG = ::T.let(nil, ::T.untyped)
|
404
|
-
end
|
405
|
-
|
406
|
-
class RuboCop::Cop::Layout::MultilineMethodArgumentLineBreaks
|
407
|
-
MSG = ::T.let(nil, ::T.untyped)
|
408
|
-
end
|
409
|
-
|
410
|
-
class RuboCop::Cop::Layout::MultilineMethodCallBraceLayout
|
411
|
-
ALWAYS_NEW_LINE_MESSAGE = ::T.let(nil, ::T.untyped)
|
412
|
-
ALWAYS_SAME_LINE_MESSAGE = ::T.let(nil, ::T.untyped)
|
413
|
-
NEW_LINE_MESSAGE = ::T.let(nil, ::T.untyped)
|
414
|
-
SAME_LINE_MESSAGE = ::T.let(nil, ::T.untyped)
|
415
|
-
end
|
416
|
-
|
417
|
-
class RuboCop::Cop::Layout::MultilineMethodDefinitionBraceLayout
|
418
|
-
ALWAYS_NEW_LINE_MESSAGE = ::T.let(nil, ::T.untyped)
|
419
|
-
ALWAYS_SAME_LINE_MESSAGE = ::T.let(nil, ::T.untyped)
|
420
|
-
NEW_LINE_MESSAGE = ::T.let(nil, ::T.untyped)
|
421
|
-
SAME_LINE_MESSAGE = ::T.let(nil, ::T.untyped)
|
422
|
-
end
|
423
|
-
|
424
|
-
class RuboCop::Cop::Layout::ParameterAlignment
|
425
|
-
ALIGN_PARAMS_MSG = ::T.let(nil, ::T.untyped)
|
426
|
-
FIXED_INDENT_MSG = ::T.let(nil, ::T.untyped)
|
427
|
-
end
|
428
|
-
|
429
|
-
class RuboCop::Cop::Layout::RescueEnsureAlignment
|
430
|
-
ALTERNATIVE_ACCESS_MODIFIERS = ::T.let(nil, ::T.untyped)
|
431
|
-
ANCESTOR_TYPES = ::T.let(nil, ::T.untyped)
|
432
|
-
ANCESTOR_TYPES_WITH_ACCESS_MODIFIERS = ::T.let(nil, ::T.untyped)
|
433
|
-
MSG = ::T.let(nil, ::T.untyped)
|
434
|
-
RUBY_2_5_ANCESTOR_TYPES = ::T.let(nil, ::T.untyped)
|
435
|
-
end
|
436
|
-
|
437
|
-
class RuboCop::Cop::Layout::SpaceAfterColon
|
438
|
-
MSG = ::T.let(nil, ::T.untyped)
|
439
|
-
end
|
440
|
-
|
441
|
-
class RuboCop::Cop::Layout::SpaceAfterMethodName
|
442
|
-
MSG = ::T.let(nil, ::T.untyped)
|
443
|
-
end
|
444
|
-
|
445
|
-
class RuboCop::Cop::Layout::SpaceAfterNot
|
446
|
-
MSG = ::T.let(nil, ::T.untyped)
|
447
|
-
end
|
448
|
-
|
449
|
-
class RuboCop::Cop::Layout::SpaceAroundEqualsInParameterDefault
|
450
|
-
MSG = ::T.let(nil, ::T.untyped)
|
451
|
-
end
|
452
|
-
|
453
|
-
class RuboCop::Cop::Layout::SpaceAroundKeyword
|
454
|
-
ACCEPT_LEFT_PAREN = ::T.let(nil, ::T.untyped)
|
455
|
-
ACCEPT_LEFT_SQUARE_BRACKET = ::T.let(nil, ::T.untyped)
|
456
|
-
ACCEPT_NAMESPACE_OPERATOR = ::T.let(nil, ::T.untyped)
|
457
|
-
DO = ::T.let(nil, ::T.untyped)
|
458
|
-
MSG_AFTER = ::T.let(nil, ::T.untyped)
|
459
|
-
MSG_BEFORE = ::T.let(nil, ::T.untyped)
|
460
|
-
NAMESPACE_OPERATOR = ::T.let(nil, ::T.untyped)
|
461
|
-
SAFE_NAVIGATION = ::T.let(nil, ::T.untyped)
|
462
|
-
end
|
463
|
-
|
464
|
-
class RuboCop::Cop::Layout::SpaceAroundMethodCallOperator
|
465
|
-
MSG = ::T.let(nil, ::T.untyped)
|
466
|
-
end
|
467
|
-
|
468
|
-
class RuboCop::Cop::Layout::SpaceAroundOperators
|
469
|
-
EXCESSIVE_SPACE = ::T.let(nil, ::T.untyped)
|
470
|
-
IRREGULAR_METHODS = ::T.let(nil, ::T.untyped)
|
471
|
-
end
|
472
|
-
|
473
|
-
class RuboCop::Cop::Layout::SpaceBeforeBlockBraces
|
474
|
-
DETECTED_MSG = ::T.let(nil, ::T.untyped)
|
475
|
-
MISSING_MSG = ::T.let(nil, ::T.untyped)
|
476
|
-
end
|
477
|
-
|
478
|
-
class RuboCop::Cop::Layout::SpaceBeforeComment
|
479
|
-
MSG = ::T.let(nil, ::T.untyped)
|
480
|
-
end
|
481
|
-
|
482
|
-
class RuboCop::Cop::Layout::SpaceBeforeFirstArg
|
483
|
-
MSG = ::T.let(nil, ::T.untyped)
|
484
|
-
end
|
485
|
-
|
486
|
-
class RuboCop::Cop::Layout::SpaceInLambdaLiteral
|
487
|
-
MSG_REQUIRE_NO_SPACE = ::T.let(nil, ::T.untyped)
|
488
|
-
MSG_REQUIRE_SPACE = ::T.let(nil, ::T.untyped)
|
489
|
-
end
|
490
|
-
|
491
|
-
class RuboCop::Cop::Layout::SpaceInsideArrayLiteralBrackets
|
492
|
-
EMPTY_MSG = ::T.let(nil, ::T.untyped)
|
493
|
-
MSG = ::T.let(nil, ::T.untyped)
|
494
|
-
end
|
495
|
-
|
496
|
-
class RuboCop::Cop::Layout::SpaceInsideArrayPercentLiteral
|
497
|
-
MSG = ::T.let(nil, ::T.untyped)
|
498
|
-
MULTIPLE_SPACES_BETWEEN_ITEMS_REGEX = ::T.let(nil, ::T.untyped)
|
499
|
-
end
|
500
|
-
|
501
|
-
class RuboCop::Cop::Layout::SpaceInsideHashLiteralBraces
|
502
|
-
MSG = ::T.let(nil, ::T.untyped)
|
503
|
-
end
|
504
|
-
|
505
|
-
class RuboCop::Cop::Layout::SpaceInsideParens
|
506
|
-
MSG = ::T.let(nil, ::T.untyped)
|
507
|
-
MSG_SPACE = ::T.let(nil, ::T.untyped)
|
508
|
-
end
|
509
|
-
|
510
|
-
class RuboCop::Cop::Layout::SpaceInsidePercentLiteralDelimiters
|
511
|
-
BEGIN_REGEX = ::T.let(nil, ::T.untyped)
|
512
|
-
END_REGEX = ::T.let(nil, ::T.untyped)
|
513
|
-
MSG = ::T.let(nil, ::T.untyped)
|
514
|
-
end
|
515
|
-
|
516
|
-
class RuboCop::Cop::Layout::SpaceInsideRangeLiteral
|
517
|
-
MSG = ::T.let(nil, ::T.untyped)
|
518
|
-
end
|
519
|
-
|
520
|
-
class RuboCop::Cop::Layout::SpaceInsideReferenceBrackets
|
521
|
-
BRACKET_METHODS = ::T.let(nil, ::T.untyped)
|
522
|
-
EMPTY_MSG = ::T.let(nil, ::T.untyped)
|
523
|
-
MSG = ::T.let(nil, ::T.untyped)
|
524
|
-
end
|
525
|
-
|
526
|
-
class RuboCop::Cop::Layout::SpaceInsideStringInterpolation
|
527
|
-
NO_SPACE_MSG = ::T.let(nil, ::T.untyped)
|
528
|
-
SPACE_MSG = ::T.let(nil, ::T.untyped)
|
529
|
-
end
|
530
|
-
|
531
|
-
class RuboCop::Cop::Layout::TrailingWhitespace
|
532
|
-
MSG = ::T.let(nil, ::T.untyped)
|
533
|
-
end
|
534
|
-
|
535
|
-
class RuboCop::Cop::Lint::AmbiguousBlockAssociation
|
536
|
-
MSG = ::T.let(nil, ::T.untyped)
|
537
|
-
end
|
538
|
-
|
539
|
-
class RuboCop::Cop::Lint::AmbiguousOperator
|
540
|
-
AMBIGUITIES = ::T.let(nil, ::T.untyped)
|
541
|
-
MSG_FORMAT = ::T.let(nil, ::T.untyped)
|
542
|
-
end
|
543
|
-
|
544
|
-
class RuboCop::Cop::Lint::AmbiguousRegexpLiteral
|
545
|
-
MSG = ::T.let(nil, ::T.untyped)
|
546
|
-
end
|
547
|
-
|
548
|
-
class RuboCop::Cop::Lint::AssignmentInCondition
|
549
|
-
ASGN_TYPES = ::T.let(nil, ::T.untyped)
|
550
|
-
MSG_WITHOUT_SAFE_ASSIGNMENT_ALLOWED = ::T.let(nil, ::T.untyped)
|
551
|
-
MSG_WITH_SAFE_ASSIGNMENT_ALLOWED = ::T.let(nil, ::T.untyped)
|
552
|
-
end
|
553
|
-
|
554
|
-
class RuboCop::Cop::Lint::BigDecimalNew
|
555
|
-
MSG = ::T.let(nil, ::T.untyped)
|
556
|
-
end
|
557
|
-
|
558
|
-
class RuboCop::Cop::Lint::BooleanSymbol
|
559
|
-
MSG = ::T.let(nil, ::T.untyped)
|
560
|
-
end
|
561
|
-
|
562
|
-
class RuboCop::Cop::Lint::CircularArgumentReference
|
563
|
-
MSG = ::T.let(nil, ::T.untyped)
|
564
|
-
end
|
565
|
-
|
566
|
-
class RuboCop::Cop::Lint::Debugger
|
567
|
-
MSG = ::T.let(nil, ::T.untyped)
|
568
|
-
end
|
569
|
-
|
570
|
-
class RuboCop::Cop::Lint::DeprecatedClassMethods
|
571
|
-
DEPRECATED_METHODS_OBJECT = ::T.let(nil, ::T.untyped)
|
572
|
-
MSG = ::T.let(nil, ::T.untyped)
|
573
|
-
end
|
574
|
-
|
575
|
-
class RuboCop::Cop::Lint::DeprecatedOpenSSLConstant
|
576
|
-
MSG = ::T.let(nil, ::T.untyped)
|
577
|
-
end
|
578
|
-
|
579
|
-
class RuboCop::Cop::Lint::DisjunctiveAssignmentInConstructor
|
580
|
-
MSG = ::T.let(nil, ::T.untyped)
|
581
|
-
end
|
582
|
-
|
583
|
-
class RuboCop::Cop::Lint::DuplicateCaseCondition
|
584
|
-
MSG = ::T.let(nil, ::T.untyped)
|
585
|
-
end
|
586
|
-
|
587
|
-
class RuboCop::Cop::Lint::DuplicateHashKey
|
588
|
-
MSG = ::T.let(nil, ::T.untyped)
|
589
|
-
end
|
590
|
-
|
591
|
-
class RuboCop::Cop::Lint::DuplicateMethods
|
592
|
-
MSG = ::T.let(nil, ::T.untyped)
|
593
|
-
end
|
594
|
-
|
595
|
-
class RuboCop::Cop::Lint::EachWithObjectArgument
|
596
|
-
MSG = ::T.let(nil, ::T.untyped)
|
597
|
-
end
|
598
|
-
|
599
|
-
class RuboCop::Cop::Lint::ElseLayout
|
600
|
-
MSG = ::T.let(nil, ::T.untyped)
|
601
|
-
end
|
602
|
-
|
603
|
-
class RuboCop::Cop::Lint::EmptyEnsure
|
604
|
-
MSG = ::T.let(nil, ::T.untyped)
|
605
|
-
end
|
606
|
-
|
607
|
-
class RuboCop::Cop::Lint::EmptyExpression
|
608
|
-
MSG = ::T.let(nil, ::T.untyped)
|
609
|
-
end
|
610
|
-
|
611
|
-
class RuboCop::Cop::Lint::EmptyInterpolation
|
612
|
-
MSG = ::T.let(nil, ::T.untyped)
|
613
|
-
end
|
614
|
-
|
615
|
-
class RuboCop::Cop::Lint::EmptyWhen
|
616
|
-
MSG = ::T.let(nil, ::T.untyped)
|
617
|
-
end
|
618
|
-
|
619
|
-
class RuboCop::Cop::Lint::EnsureReturn
|
620
|
-
MSG = ::T.let(nil, ::T.untyped)
|
621
|
-
end
|
622
|
-
|
623
|
-
class RuboCop::Cop::Lint::ErbNewArguments
|
624
|
-
MESSAGES = ::T.let(nil, ::T.untyped)
|
625
|
-
end
|
626
|
-
|
627
|
-
class RuboCop::Cop::Lint::FlipFlop
|
628
|
-
MSG = ::T.let(nil, ::T.untyped)
|
629
|
-
end
|
630
|
-
|
631
|
-
class RuboCop::Cop::Lint::FloatOutOfRange
|
632
|
-
MSG = ::T.let(nil, ::T.untyped)
|
633
|
-
end
|
634
|
-
|
635
|
-
class RuboCop::Cop::Lint::FormatParameterMismatch
|
636
|
-
KERNEL = ::T.let(nil, ::T.untyped)
|
637
|
-
MSG = ::T.let(nil, ::T.untyped)
|
638
|
-
SHOVEL = ::T.let(nil, ::T.untyped)
|
639
|
-
STRING_TYPES = ::T.let(nil, ::T.untyped)
|
640
|
-
end
|
641
|
-
|
642
|
-
class RuboCop::Cop::Lint::HeredocMethodCallPosition
|
643
|
-
MSG = ::T.let(nil, ::T.untyped)
|
644
|
-
end
|
645
|
-
|
646
|
-
class RuboCop::Cop::Lint::ImplicitStringConcatenation
|
647
|
-
FOR_ARRAY = ::T.let(nil, ::T.untyped)
|
648
|
-
FOR_METHOD = ::T.let(nil, ::T.untyped)
|
649
|
-
MSG = ::T.let(nil, ::T.untyped)
|
650
|
-
end
|
651
|
-
|
652
|
-
class RuboCop::Cop::Lint::IneffectiveAccessModifier
|
653
|
-
ALTERNATIVE_PRIVATE = ::T.let(nil, ::T.untyped)
|
654
|
-
ALTERNATIVE_PROTECTED = ::T.let(nil, ::T.untyped)
|
655
|
-
MSG = ::T.let(nil, ::T.untyped)
|
656
|
-
end
|
657
|
-
|
658
|
-
class RuboCop::Cop::Lint::InheritException
|
659
|
-
ILLEGAL_CLASSES = ::T.let(nil, ::T.untyped)
|
660
|
-
MSG = ::T.let(nil, ::T.untyped)
|
661
|
-
PREFERRED_BASE_CLASS = ::T.let(nil, ::T.untyped)
|
662
|
-
end
|
663
|
-
|
664
|
-
class RuboCop::Cop::Lint::InterpolationCheck
|
665
|
-
MSG = ::T.let(nil, ::T.untyped)
|
666
|
-
end
|
667
|
-
|
668
|
-
class RuboCop::Cop::Lint::LiteralAsCondition
|
669
|
-
MSG = ::T.let(nil, ::T.untyped)
|
670
|
-
end
|
671
|
-
|
672
|
-
class RuboCop::Cop::Lint::LiteralInInterpolation
|
673
|
-
COMPOSITE = ::T.let(nil, ::T.untyped)
|
674
|
-
MSG = ::T.let(nil, ::T.untyped)
|
675
|
-
end
|
676
|
-
|
677
|
-
class RuboCop::Cop::Lint::Loop
|
678
|
-
MSG = ::T.let(nil, ::T.untyped)
|
679
|
-
end
|
680
|
-
|
681
|
-
class RuboCop::Cop::Lint::MissingCopEnableDirective
|
682
|
-
MSG = ::T.let(nil, ::T.untyped)
|
683
|
-
MSG_BOUND = ::T.let(nil, ::T.untyped)
|
684
|
-
end
|
685
|
-
|
686
|
-
class RuboCop::Cop::Lint::MixedRegexpCaptureTypes
|
687
|
-
MSG = ::T.let(nil, ::T.untyped)
|
688
|
-
end
|
689
|
-
|
690
|
-
class RuboCop::Cop::Lint::MultipleComparison
|
691
|
-
MSG = ::T.let(nil, ::T.untyped)
|
692
|
-
end
|
693
|
-
|
694
|
-
class RuboCop::Cop::Lint::NestedMethodDefinition
|
695
|
-
MSG = ::T.let(nil, ::T.untyped)
|
696
|
-
end
|
697
|
-
|
698
|
-
class RuboCop::Cop::Lint::NestedPercentLiteral
|
699
|
-
MSG = ::T.let(nil, ::T.untyped)
|
700
|
-
PERCENT_LITERAL_TYPES = ::T.let(nil, ::T.untyped)
|
701
|
-
REGEXES = ::T.let(nil, ::T.untyped)
|
702
|
-
end
|
703
|
-
|
704
|
-
class RuboCop::Cop::Lint::NextWithoutAccumulator
|
705
|
-
MSG = ::T.let(nil, ::T.untyped)
|
706
|
-
end
|
707
|
-
|
708
|
-
class RuboCop::Cop::Lint::NonDeterministicRequireOrder
|
709
|
-
MSG = ::T.let(nil, ::T.untyped)
|
710
|
-
end
|
711
|
-
|
712
|
-
class RuboCop::Cop::Lint::NonLocalExitFromIterator
|
713
|
-
MSG = ::T.let(nil, ::T.untyped)
|
714
|
-
end
|
715
|
-
|
716
|
-
class RuboCop::Cop::Lint::NumberConversion
|
717
|
-
CONVERSION_METHOD_CLASS_MAPPING = ::T.let(nil, ::T.untyped)
|
718
|
-
MSG = ::T.let(nil, ::T.untyped)
|
719
|
-
end
|
720
|
-
|
721
|
-
class RuboCop::Cop::Lint::OrderedMagicComments
|
722
|
-
MSG = ::T.let(nil, ::T.untyped)
|
723
|
-
end
|
724
|
-
|
725
|
-
class RuboCop::Cop::Lint::ParenthesesAsGroupedExpression
|
726
|
-
MSG = ::T.let(nil, ::T.untyped)
|
727
|
-
end
|
728
|
-
|
729
|
-
class RuboCop::Cop::Lint::PercentStringArray
|
730
|
-
LEADING_QUOTE = ::T.let(nil, ::T.untyped)
|
731
|
-
MSG = ::T.let(nil, ::T.untyped)
|
732
|
-
QUOTES_AND_COMMAS = ::T.let(nil, ::T.untyped)
|
733
|
-
TRAILING_QUOTE = ::T.let(nil, ::T.untyped)
|
734
|
-
end
|
735
|
-
|
736
|
-
class RuboCop::Cop::Lint::PercentSymbolArray
|
737
|
-
MSG = ::T.let(nil, ::T.untyped)
|
738
|
-
end
|
739
|
-
|
740
|
-
class RuboCop::Cop::Lint::RaiseException
|
741
|
-
MSG = ::T.let(nil, ::T.untyped)
|
742
|
-
end
|
743
|
-
|
744
|
-
class RuboCop::Cop::Lint::RandOne
|
745
|
-
MSG = ::T.let(nil, ::T.untyped)
|
746
|
-
end
|
747
|
-
|
748
|
-
class RuboCop::Cop::Lint::RedundantCopDisableDirective
|
749
|
-
COP_NAME = ::T.let(nil, ::T.untyped)
|
750
|
-
end
|
751
|
-
|
752
|
-
class RuboCop::Cop::Lint::RedundantCopEnableDirective
|
753
|
-
MSG = ::T.let(nil, ::T.untyped)
|
754
|
-
end
|
755
|
-
|
756
|
-
class RuboCop::Cop::Lint::RedundantRequireStatement
|
757
|
-
MSG = ::T.let(nil, ::T.untyped)
|
758
|
-
end
|
759
|
-
|
760
|
-
class RuboCop::Cop::Lint::RedundantSplatExpansion
|
761
|
-
ARRAY_PARAM_MSG = ::T.let(nil, ::T.untyped)
|
762
|
-
ASSIGNMENT_TYPES = ::T.let(nil, ::T.untyped)
|
763
|
-
MSG = ::T.let(nil, ::T.untyped)
|
764
|
-
PERCENT_CAPITAL_I = ::T.let(nil, ::T.untyped)
|
765
|
-
PERCENT_CAPITAL_W = ::T.let(nil, ::T.untyped)
|
766
|
-
PERCENT_I = ::T.let(nil, ::T.untyped)
|
767
|
-
PERCENT_W = ::T.let(nil, ::T.untyped)
|
768
|
-
end
|
769
|
-
|
770
|
-
class RuboCop::Cop::Lint::RedundantStringCoercion
|
771
|
-
MSG_DEFAULT = ::T.let(nil, ::T.untyped)
|
772
|
-
MSG_SELF = ::T.let(nil, ::T.untyped)
|
773
|
-
end
|
774
|
-
|
775
|
-
class RuboCop::Cop::Lint::RedundantWithIndex
|
776
|
-
MSG_EACH_WITH_INDEX = ::T.let(nil, ::T.untyped)
|
777
|
-
MSG_WITH_INDEX = ::T.let(nil, ::T.untyped)
|
778
|
-
end
|
779
|
-
|
780
|
-
class RuboCop::Cop::Lint::RedundantWithObject
|
781
|
-
MSG_EACH_WITH_OBJECT = ::T.let(nil, ::T.untyped)
|
782
|
-
MSG_WITH_OBJECT = ::T.let(nil, ::T.untyped)
|
783
|
-
end
|
784
|
-
|
785
|
-
class RuboCop::Cop::Lint::RegexpAsCondition
|
786
|
-
MSG = ::T.let(nil, ::T.untyped)
|
787
|
-
end
|
788
|
-
|
789
|
-
class RuboCop::Cop::Lint::RequireParentheses
|
790
|
-
MSG = ::T.let(nil, ::T.untyped)
|
791
|
-
end
|
792
|
-
|
793
|
-
class RuboCop::Cop::Lint::RescueException
|
794
|
-
MSG = ::T.let(nil, ::T.untyped)
|
795
|
-
end
|
796
|
-
|
797
|
-
class RuboCop::Cop::Lint::RescueType
|
798
|
-
INVALID_TYPES = ::T.let(nil, ::T.untyped)
|
799
|
-
MSG = ::T.let(nil, ::T.untyped)
|
800
|
-
end
|
801
|
-
|
802
|
-
class RuboCop::Cop::Lint::ReturnInVoidContext
|
803
|
-
MSG = ::T.let(nil, ::T.untyped)
|
804
|
-
end
|
805
|
-
|
806
|
-
class RuboCop::Cop::Lint::SafeNavigationChain
|
807
|
-
MSG = ::T.let(nil, ::T.untyped)
|
808
|
-
end
|
809
|
-
|
810
|
-
class RuboCop::Cop::Lint::SafeNavigationConsistency
|
811
|
-
MSG = ::T.let(nil, ::T.untyped)
|
812
|
-
end
|
813
|
-
|
814
|
-
class RuboCop::Cop::Lint::SafeNavigationWithEmpty
|
815
|
-
MSG = ::T.let(nil, ::T.untyped)
|
816
|
-
end
|
817
|
-
|
818
|
-
class RuboCop::Cop::Lint::ScriptPermission
|
819
|
-
MSG = ::T.let(nil, ::T.untyped)
|
820
|
-
SHEBANG = ::T.let(nil, ::T.untyped)
|
821
|
-
end
|
822
|
-
|
823
|
-
class RuboCop::Cop::Lint::SendWithMixinArgument
|
824
|
-
MIXIN_METHODS = ::T.let(nil, ::T.untyped)
|
825
|
-
MSG = ::T.let(nil, ::T.untyped)
|
826
|
-
end
|
827
|
-
|
828
|
-
class RuboCop::Cop::Lint::ShadowedArgument
|
829
|
-
MSG = ::T.let(nil, ::T.untyped)
|
830
|
-
end
|
831
|
-
|
832
|
-
class RuboCop::Cop::Lint::ShadowedException
|
833
|
-
MSG = ::T.let(nil, ::T.untyped)
|
834
|
-
end
|
835
|
-
|
836
|
-
class RuboCop::Cop::Lint::ShadowingOuterLocalVariable
|
837
|
-
MSG = ::T.let(nil, ::T.untyped)
|
838
|
-
end
|
839
|
-
|
840
|
-
class RuboCop::Cop::Lint::StructNewOverride
|
841
|
-
MSG = ::T.let(nil, ::T.untyped)
|
842
|
-
STRUCT_MEMBER_NAME_TYPES = ::T.let(nil, ::T.untyped)
|
843
|
-
STRUCT_METHOD_NAMES = ::T.let(nil, ::T.untyped)
|
844
|
-
end
|
845
|
-
|
846
|
-
class RuboCop::Cop::Lint::SuppressedException
|
847
|
-
MSG = ::T.let(nil, ::T.untyped)
|
848
|
-
end
|
849
|
-
|
850
|
-
class RuboCop::Cop::Lint::Syntax
|
851
|
-
ERROR_SOURCE_RANGE = ::T.let(nil, ::T.untyped)
|
852
|
-
end
|
853
|
-
|
854
|
-
class RuboCop::Cop::Lint::ToJSON
|
855
|
-
MSG = ::T.let(nil, ::T.untyped)
|
856
|
-
end
|
857
|
-
|
858
|
-
class RuboCop::Cop::Lint::UnderscorePrefixedVariableName
|
859
|
-
MSG = ::T.let(nil, ::T.untyped)
|
860
|
-
end
|
861
|
-
|
862
|
-
class RuboCop::Cop::Lint::UnifiedInteger
|
863
|
-
MSG = ::T.let(nil, ::T.untyped)
|
864
|
-
end
|
865
|
-
|
866
|
-
class RuboCop::Cop::Lint::UnreachableCode
|
867
|
-
MSG = ::T.let(nil, ::T.untyped)
|
868
|
-
end
|
869
|
-
|
870
|
-
class RuboCop::Cop::Lint::UriEscapeUnescape
|
871
|
-
ALTERNATE_METHODS_OF_URI_ESCAPE = ::T.let(nil, ::T.untyped)
|
872
|
-
ALTERNATE_METHODS_OF_URI_UNESCAPE = ::T.let(nil, ::T.untyped)
|
873
|
-
MSG = ::T.let(nil, ::T.untyped)
|
874
|
-
end
|
875
|
-
|
876
|
-
class RuboCop::Cop::Lint::UriRegexp
|
877
|
-
MSG = ::T.let(nil, ::T.untyped)
|
878
|
-
end
|
879
|
-
|
880
|
-
class RuboCop::Cop::Lint::UselessAccessModifier
|
881
|
-
MSG = ::T.let(nil, ::T.untyped)
|
882
|
-
end
|
883
|
-
|
884
|
-
class RuboCop::Cop::Lint::UselessAssignment
|
885
|
-
MSG = ::T.let(nil, ::T.untyped)
|
886
|
-
end
|
887
|
-
|
888
|
-
class RuboCop::Cop::Lint::UselessComparison
|
889
|
-
MSG = ::T.let(nil, ::T.untyped)
|
890
|
-
OPS = ::T.let(nil, ::T.untyped)
|
891
|
-
end
|
892
|
-
|
893
|
-
class RuboCop::Cop::Lint::UselessElseWithoutRescue
|
894
|
-
MSG = ::T.let(nil, ::T.untyped)
|
895
|
-
end
|
896
|
-
|
897
|
-
class RuboCop::Cop::Lint::UselessSetterCall
|
898
|
-
ASSIGNMENT_TYPES = ::T.let(nil, ::T.untyped)
|
899
|
-
MSG = ::T.let(nil, ::T.untyped)
|
900
|
-
end
|
901
|
-
|
902
|
-
class RuboCop::Cop::Lint::Void
|
903
|
-
BINARY_OPERATORS = ::T.let(nil, ::T.untyped)
|
904
|
-
DEFINED_MSG = ::T.let(nil, ::T.untyped)
|
905
|
-
LIT_MSG = ::T.let(nil, ::T.untyped)
|
906
|
-
NONMUTATING_METHODS = ::T.let(nil, ::T.untyped)
|
907
|
-
NONMUTATING_MSG = ::T.let(nil, ::T.untyped)
|
908
|
-
OPERATORS = ::T.let(nil, ::T.untyped)
|
909
|
-
OP_MSG = ::T.let(nil, ::T.untyped)
|
910
|
-
SELF_MSG = ::T.let(nil, ::T.untyped)
|
911
|
-
UNARY_OPERATORS = ::T.let(nil, ::T.untyped)
|
912
|
-
VAR_MSG = ::T.let(nil, ::T.untyped)
|
913
|
-
VOID_CONTEXT_TYPES = ::T.let(nil, ::T.untyped)
|
914
|
-
end
|
915
|
-
|
916
|
-
class RuboCop::Cop::Metrics::AbcSize
|
917
|
-
MSG = ::T.let(nil, ::T.untyped)
|
918
|
-
end
|
919
|
-
|
920
|
-
class RuboCop::Cop::Metrics::BlockLength
|
921
|
-
LABEL = ::T.let(nil, ::T.untyped)
|
922
|
-
end
|
923
|
-
|
924
|
-
class RuboCop::Cop::Metrics::BlockNesting
|
925
|
-
NESTING_BLOCKS = ::T.let(nil, ::T.untyped)
|
926
|
-
end
|
927
|
-
|
928
|
-
class RuboCop::Cop::Metrics::CyclomaticComplexity
|
929
|
-
COUNTED_NODES = ::T.let(nil, ::T.untyped)
|
930
|
-
MSG = ::T.let(nil, ::T.untyped)
|
931
|
-
end
|
932
|
-
|
933
|
-
class RuboCop::Cop::Metrics::MethodLength
|
934
|
-
LABEL = ::T.let(nil, ::T.untyped)
|
935
|
-
end
|
936
|
-
|
937
|
-
class RuboCop::Cop::Metrics::ParameterLists
|
938
|
-
MSG = ::T.let(nil, ::T.untyped)
|
939
|
-
end
|
940
|
-
|
941
|
-
class RuboCop::Cop::Metrics::PerceivedComplexity
|
942
|
-
COUNTED_NODES = ::T.let(nil, ::T.untyped)
|
943
|
-
MSG = ::T.let(nil, ::T.untyped)
|
944
|
-
end
|
945
|
-
|
946
|
-
class RuboCop::Cop::Metrics::Utils::AbcSizeCalculator
|
947
|
-
BRANCH_NODES = ::T.let(nil, ::T.untyped)
|
948
|
-
CONDITION_NODES = ::T.let(nil, ::T.untyped)
|
949
|
-
end
|
950
|
-
|
951
|
-
class RuboCop::Cop::Migration::DepartmentName
|
952
|
-
DISABLE_COMMENT_FORMAT = ::T.let(nil, ::T.untyped)
|
953
|
-
DISABLING_COPS_CONTENT_TOKEN = ::T.let(nil, ::T.untyped)
|
954
|
-
MSG = ::T.let(nil, ::T.untyped)
|
955
|
-
end
|
956
|
-
|
957
|
-
module RuboCop::Cop::MultilineExpressionIndentation
|
958
|
-
ASSIGNMENT_MESSAGE_TAIL = ::T.let(nil, ::T.untyped)
|
959
|
-
DEFAULT_MESSAGE_TAIL = ::T.let(nil, ::T.untyped)
|
960
|
-
KEYWORD_ANCESTOR_TYPES = ::T.let(nil, ::T.untyped)
|
961
|
-
KEYWORD_MESSAGE_TAIL = ::T.let(nil, ::T.untyped)
|
962
|
-
UNALIGNED_RHS_TYPES = ::T.let(nil, ::T.untyped)
|
963
|
-
end
|
964
|
-
|
965
|
-
class RuboCop::Cop::Naming::AccessorMethodName
|
966
|
-
MSG_READER = ::T.let(nil, ::T.untyped)
|
967
|
-
MSG_WRITER = ::T.let(nil, ::T.untyped)
|
968
|
-
end
|
969
|
-
|
970
|
-
class RuboCop::Cop::Naming::AsciiIdentifiers
|
971
|
-
MSG = ::T.let(nil, ::T.untyped)
|
972
|
-
end
|
973
|
-
|
974
|
-
class RuboCop::Cop::Naming::BinaryOperatorParameterName
|
975
|
-
BLACKLISTED = ::T.let(nil, ::T.untyped)
|
976
|
-
MSG = ::T.let(nil, ::T.untyped)
|
977
|
-
OP_LIKE_METHODS = ::T.let(nil, ::T.untyped)
|
978
|
-
end
|
979
|
-
|
980
|
-
class RuboCop::Cop::Naming::ClassAndModuleCamelCase
|
981
|
-
MSG = ::T.let(nil, ::T.untyped)
|
982
|
-
end
|
983
|
-
|
984
|
-
class RuboCop::Cop::Naming::ConstantName
|
985
|
-
MSG = ::T.let(nil, ::T.untyped)
|
986
|
-
SNAKE_CASE = ::T.let(nil, ::T.untyped)
|
987
|
-
end
|
988
|
-
|
989
|
-
class RuboCop::Cop::Naming::FileName
|
990
|
-
MSG_NO_DEFINITION = ::T.let(nil, ::T.untyped)
|
991
|
-
MSG_REGEX = ::T.let(nil, ::T.untyped)
|
992
|
-
MSG_SNAKE_CASE = ::T.let(nil, ::T.untyped)
|
993
|
-
SNAKE_CASE = ::T.let(nil, ::T.untyped)
|
994
|
-
end
|
995
|
-
|
996
|
-
class RuboCop::Cop::Naming::HeredocDelimiterCase
|
997
|
-
MSG = ::T.let(nil, ::T.untyped)
|
998
|
-
end
|
999
|
-
|
1000
|
-
class RuboCop::Cop::Naming::HeredocDelimiterNaming
|
1001
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1002
|
-
end
|
1003
|
-
|
1004
|
-
class RuboCop::Cop::Naming::MemoizedInstanceVariableName
|
1005
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1006
|
-
UNDERSCORE_REQUIRED = ::T.let(nil, ::T.untyped)
|
1007
|
-
end
|
1008
|
-
|
1009
|
-
class RuboCop::Cop::Naming::MethodName
|
1010
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1011
|
-
end
|
1012
|
-
|
1013
|
-
class RuboCop::Cop::Naming::RescuedExceptionsVariableName
|
1014
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1015
|
-
end
|
1016
|
-
|
1017
|
-
class RuboCop::Cop::Naming::VariableName
|
1018
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1019
|
-
end
|
1020
|
-
|
1021
|
-
class RuboCop::Cop::Naming::VariableNumber
|
1022
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1023
|
-
end
|
1024
|
-
|
1025
|
-
module RuboCop::Cop::NegativeConditional
|
1026
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1027
|
-
end
|
1028
|
-
|
1029
|
-
class RuboCop::Cop::Offense
|
1030
|
-
COMPARISON_ATTRIBUTES = ::T.let(nil, ::T.untyped)
|
1031
|
-
end
|
1032
|
-
|
1033
|
-
class RuboCop::Cop::PreferredDelimiters
|
1034
|
-
PERCENT_LITERAL_TYPES = ::T.let(nil, ::T.untyped)
|
1035
|
-
end
|
1036
|
-
|
1037
|
-
module RuboCop::Cop::RangeHelp
|
1038
|
-
BYTE_ORDER_MARK = ::T.let(nil, ::T.untyped)
|
1039
|
-
end
|
1040
|
-
|
1041
|
-
class RuboCop::Cop::Security::Eval
|
1042
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1043
|
-
end
|
1044
|
-
|
1045
|
-
class RuboCop::Cop::Security::JSONLoad
|
1046
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1047
|
-
end
|
1048
|
-
|
1049
|
-
class RuboCop::Cop::Security::MarshalLoad
|
1050
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1051
|
-
end
|
1052
|
-
|
1053
|
-
class RuboCop::Cop::Security::Open
|
1054
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1055
|
-
end
|
1056
|
-
|
1057
|
-
class RuboCop::Cop::Security::YAMLLoad
|
1058
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1059
|
-
end
|
1060
|
-
|
1061
|
-
class RuboCop::Cop::Severity
|
1062
|
-
CODE_TABLE = ::T.let(nil, ::T.untyped)
|
1063
|
-
NAMES = ::T.let(nil, ::T.untyped)
|
1064
|
-
end
|
1065
|
-
|
1066
|
-
module RuboCop::Cop::SpaceAfterPunctuation
|
1067
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1068
|
-
end
|
1069
|
-
|
1070
|
-
module RuboCop::Cop::SpaceBeforePunctuation
|
1071
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1072
|
-
end
|
1073
|
-
|
1074
|
-
class RuboCop::Cop::Style::AccessModifierDeclarations
|
1075
|
-
GROUP_STYLE_MESSAGE = ::T.let(nil, ::T.untyped)
|
1076
|
-
INLINE_STYLE_MESSAGE = ::T.let(nil, ::T.untyped)
|
1077
|
-
end
|
1078
|
-
|
1079
|
-
class RuboCop::Cop::Style::Alias
|
1080
|
-
MSG_ALIAS = ::T.let(nil, ::T.untyped)
|
1081
|
-
MSG_ALIAS_METHOD = ::T.let(nil, ::T.untyped)
|
1082
|
-
MSG_SYMBOL_ARGS = ::T.let(nil, ::T.untyped)
|
1083
|
-
end
|
1084
|
-
|
1085
|
-
class RuboCop::Cop::Style::AndOr
|
1086
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1087
|
-
end
|
1088
|
-
|
1089
|
-
class RuboCop::Cop::Style::ArrayJoin
|
1090
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1091
|
-
end
|
1092
|
-
|
1093
|
-
class RuboCop::Cop::Style::AsciiComments
|
1094
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1095
|
-
end
|
1096
|
-
|
1097
|
-
class RuboCop::Cop::Style::Attr
|
1098
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1099
|
-
end
|
1100
|
-
|
1101
|
-
class RuboCop::Cop::Style::AutoResourceCleanup
|
1102
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1103
|
-
TARGET_METHODS = ::T.let(nil, ::T.untyped)
|
1104
|
-
end
|
1105
|
-
|
1106
|
-
class RuboCop::Cop::Style::BarePercentLiterals
|
1107
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1108
|
-
end
|
1109
|
-
|
1110
|
-
class RuboCop::Cop::Style::BeginBlock
|
1111
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1112
|
-
end
|
1113
|
-
|
1114
|
-
class RuboCop::Cop::Style::BlockComments
|
1115
|
-
BEGIN_LENGTH = ::T.let(nil, ::T.untyped)
|
1116
|
-
END_LENGTH = ::T.let(nil, ::T.untyped)
|
1117
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1118
|
-
end
|
1119
|
-
|
1120
|
-
class RuboCop::Cop::Style::BlockDelimiters
|
1121
|
-
ALWAYS_BRACES_MESSAGE = ::T.let(nil, ::T.untyped)
|
1122
|
-
BRACES_REQUIRED_MESSAGE = ::T.let(nil, ::T.untyped)
|
1123
|
-
end
|
1124
|
-
|
1125
|
-
class RuboCop::Cop::Style::CaseCorrector
|
1126
|
-
extend ::RuboCop::Cop::Style::ConditionalAssignmentHelper
|
1127
|
-
extend ::RuboCop::Cop::Style::ConditionalCorrectorHelper
|
1128
|
-
end
|
1129
|
-
|
1130
|
-
class RuboCop::Cop::Style::CaseEquality
|
1131
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1132
|
-
end
|
1133
|
-
|
1134
|
-
class RuboCop::Cop::Style::CharacterLiteral
|
1135
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1136
|
-
end
|
1137
|
-
|
1138
|
-
class RuboCop::Cop::Style::ClassAndModuleChildren
|
1139
|
-
COMPACT_MSG = ::T.let(nil, ::T.untyped)
|
1140
|
-
NESTED_MSG = ::T.let(nil, ::T.untyped)
|
1141
|
-
end
|
1142
|
-
|
1143
|
-
class RuboCop::Cop::Style::ClassCheck
|
1144
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1145
|
-
end
|
1146
|
-
|
1147
|
-
class RuboCop::Cop::Style::ClassMethods
|
1148
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1149
|
-
end
|
1150
|
-
|
1151
|
-
class RuboCop::Cop::Style::ClassVars
|
1152
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1153
|
-
end
|
1154
|
-
|
1155
|
-
class RuboCop::Cop::Style::CollectionMethods
|
1156
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1157
|
-
end
|
1158
|
-
|
1159
|
-
class RuboCop::Cop::Style::ColonMethodCall
|
1160
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1161
|
-
end
|
1162
|
-
|
1163
|
-
class RuboCop::Cop::Style::ColonMethodDefinition
|
1164
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1165
|
-
end
|
1166
|
-
|
1167
|
-
class RuboCop::Cop::Style::CommandLiteral
|
1168
|
-
MSG_USE_BACKTICKS = ::T.let(nil, ::T.untyped)
|
1169
|
-
MSG_USE_PERCENT_X = ::T.let(nil, ::T.untyped)
|
1170
|
-
end
|
1171
|
-
|
1172
|
-
class RuboCop::Cop::Style::CommentAnnotation
|
1173
|
-
MISSING_NOTE = ::T.let(nil, ::T.untyped)
|
1174
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1175
|
-
end
|
1176
|
-
|
1177
|
-
class RuboCop::Cop::Style::CommentedKeyword
|
1178
|
-
ALLOWED_COMMENTS = ::T.let(nil, ::T.untyped)
|
1179
|
-
KEYWORDS = ::T.let(nil, ::T.untyped)
|
1180
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1181
|
-
end
|
1182
|
-
|
1183
|
-
class RuboCop::Cop::Style::ConditionalAssignment
|
1184
|
-
ASSIGNMENT_TYPES = ::T.let(nil, ::T.untyped)
|
1185
|
-
ASSIGN_TO_CONDITION_MSG = ::T.let(nil, ::T.untyped)
|
1186
|
-
ENABLED = ::T.let(nil, ::T.untyped)
|
1187
|
-
INDENTATION_WIDTH = ::T.let(nil, ::T.untyped)
|
1188
|
-
LINE_LENGTH = ::T.let(nil, ::T.untyped)
|
1189
|
-
MAX = ::T.let(nil, ::T.untyped)
|
1190
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1191
|
-
SINGLE_LINE_CONDITIONS_ONLY = ::T.let(nil, ::T.untyped)
|
1192
|
-
VARIABLE_ASSIGNMENT_TYPES = ::T.let(nil, ::T.untyped)
|
1193
|
-
WIDTH = ::T.let(nil, ::T.untyped)
|
1194
|
-
end
|
1195
|
-
|
1196
|
-
module RuboCop::Cop::Style::ConditionalAssignmentHelper
|
1197
|
-
ALIGN_WITH = ::T.let(nil, ::T.untyped)
|
1198
|
-
END_ALIGNMENT = ::T.let(nil, ::T.untyped)
|
1199
|
-
EQUAL = ::T.let(nil, ::T.untyped)
|
1200
|
-
KEYWORD = ::T.let(nil, ::T.untyped)
|
1201
|
-
end
|
1202
|
-
|
1203
|
-
class RuboCop::Cop::Style::ConstantVisibility
|
1204
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1205
|
-
end
|
1206
|
-
|
1207
|
-
class RuboCop::Cop::Style::Copyright
|
1208
|
-
AUTOCORRECT_EMPTY_WARNING = ::T.let(nil, ::T.untyped)
|
1209
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1210
|
-
end
|
1211
|
-
|
1212
|
-
class RuboCop::Cop::Style::DateTime
|
1213
|
-
CLASS_MSG = ::T.let(nil, ::T.untyped)
|
1214
|
-
COERCION_MSG = ::T.let(nil, ::T.untyped)
|
1215
|
-
end
|
1216
|
-
|
1217
|
-
class RuboCop::Cop::Style::DefWithParentheses
|
1218
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1219
|
-
end
|
1220
|
-
|
1221
|
-
class RuboCop::Cop::Style::Dir
|
1222
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1223
|
-
end
|
1224
|
-
|
1225
|
-
class RuboCop::Cop::Style::DisableCopsWithinSourceCodeDirective
|
1226
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1227
|
-
end
|
1228
|
-
|
1229
|
-
class RuboCop::Cop::Style::Documentation
|
1230
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1231
|
-
end
|
1232
|
-
|
1233
|
-
class RuboCop::Cop::Style::DocumentationMethod
|
1234
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1235
|
-
end
|
1236
|
-
|
1237
|
-
class RuboCop::Cop::Style::DoubleCopDisableDirective
|
1238
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1239
|
-
end
|
1240
|
-
|
1241
|
-
class RuboCop::Cop::Style::DoubleNegation
|
1242
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1243
|
-
end
|
1244
|
-
|
1245
|
-
class RuboCop::Cop::Style::EachForSimpleLoop
|
1246
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1247
|
-
end
|
1248
|
-
|
1249
|
-
class RuboCop::Cop::Style::EachWithObject
|
1250
|
-
METHODS = ::T.let(nil, ::T.untyped)
|
1251
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1252
|
-
end
|
1253
|
-
|
1254
|
-
class RuboCop::Cop::Style::EmptyBlockParameter
|
1255
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1256
|
-
end
|
1257
|
-
|
1258
|
-
class RuboCop::Cop::Style::EmptyCaseCondition
|
1259
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1260
|
-
end
|
1261
|
-
|
1262
|
-
class RuboCop::Cop::Style::EmptyElse
|
1263
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1264
|
-
end
|
1265
|
-
|
1266
|
-
class RuboCop::Cop::Style::EmptyLambdaParameter
|
1267
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1268
|
-
end
|
1269
|
-
|
1270
|
-
class RuboCop::Cop::Style::EmptyLiteral
|
1271
|
-
ARR_MSG = ::T.let(nil, ::T.untyped)
|
1272
|
-
HASH_MSG = ::T.let(nil, ::T.untyped)
|
1273
|
-
STR_MSG = ::T.let(nil, ::T.untyped)
|
1274
|
-
end
|
1275
|
-
|
1276
|
-
class RuboCop::Cop::Style::EmptyMethod
|
1277
|
-
MSG_COMPACT = ::T.let(nil, ::T.untyped)
|
1278
|
-
MSG_EXPANDED = ::T.let(nil, ::T.untyped)
|
1279
|
-
end
|
1280
|
-
|
1281
|
-
class RuboCop::Cop::Style::Encoding
|
1282
|
-
ENCODING_PATTERN = ::T.let(nil, ::T.untyped)
|
1283
|
-
MSG_UNNECESSARY = ::T.let(nil, ::T.untyped)
|
1284
|
-
SHEBANG = ::T.let(nil, ::T.untyped)
|
1285
|
-
end
|
1286
|
-
|
1287
|
-
class RuboCop::Cop::Style::EndBlock
|
1288
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1289
|
-
end
|
1290
|
-
|
1291
|
-
class RuboCop::Cop::Style::EvalWithLocation
|
1292
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1293
|
-
MSG_INCORRECT_LINE = ::T.let(nil, ::T.untyped)
|
1294
|
-
end
|
1295
|
-
|
1296
|
-
class RuboCop::Cop::Style::EvenOdd
|
1297
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1298
|
-
end
|
1299
|
-
|
1300
|
-
class RuboCop::Cop::Style::ExpandPathArguments
|
1301
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1302
|
-
PATHNAME_MSG = ::T.let(nil, ::T.untyped)
|
1303
|
-
PATHNAME_NEW_MSG = ::T.let(nil, ::T.untyped)
|
1304
|
-
end
|
1305
|
-
|
1306
|
-
class RuboCop::Cop::Style::For
|
1307
|
-
EACH_LENGTH = ::T.let(nil, ::T.untyped)
|
1308
|
-
PREFER_EACH = ::T.let(nil, ::T.untyped)
|
1309
|
-
PREFER_FOR = ::T.let(nil, ::T.untyped)
|
1310
|
-
end
|
1311
|
-
|
1312
|
-
class RuboCop::Cop::Style::FormatString
|
1313
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1314
|
-
end
|
1315
|
-
|
1316
|
-
class RuboCop::Cop::Style::FrozenStringLiteralComment
|
1317
|
-
MSG_DISABLED = ::T.let(nil, ::T.untyped)
|
1318
|
-
MSG_MISSING = ::T.let(nil, ::T.untyped)
|
1319
|
-
MSG_MISSING_TRUE = ::T.let(nil, ::T.untyped)
|
1320
|
-
MSG_UNNECESSARY = ::T.let(nil, ::T.untyped)
|
1321
|
-
SHEBANG = ::T.let(nil, ::T.untyped)
|
1322
|
-
end
|
1323
|
-
|
1324
|
-
class RuboCop::Cop::Style::GlobalVars
|
1325
|
-
BUILT_IN_VARS = ::T.let(nil, ::T.untyped)
|
1326
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1327
|
-
end
|
1328
|
-
|
1329
|
-
class RuboCop::Cop::Style::GuardClause
|
1330
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1331
|
-
end
|
1332
|
-
|
1333
|
-
class RuboCop::Cop::Style::HashEachMethods
|
1334
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1335
|
-
end
|
1336
|
-
|
1337
|
-
class RuboCop::Cop::Style::HashSyntax
|
1338
|
-
MSG_19 = ::T.let(nil, ::T.untyped)
|
1339
|
-
MSG_HASH_ROCKETS = ::T.let(nil, ::T.untyped)
|
1340
|
-
MSG_NO_MIXED_KEYS = ::T.let(nil, ::T.untyped)
|
1341
|
-
end
|
1342
|
-
|
1343
|
-
class RuboCop::Cop::Style::IdenticalConditionalBranches
|
1344
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1345
|
-
end
|
1346
|
-
|
1347
|
-
class RuboCop::Cop::Style::IfCorrector
|
1348
|
-
extend ::RuboCop::Cop::Style::ConditionalAssignmentHelper
|
1349
|
-
extend ::RuboCop::Cop::Style::ConditionalCorrectorHelper
|
1350
|
-
end
|
1351
|
-
|
1352
|
-
class RuboCop::Cop::Style::IfInsideElse
|
1353
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1354
|
-
end
|
1355
|
-
|
1356
|
-
class RuboCop::Cop::Style::IfUnlessModifier
|
1357
|
-
ASSIGNMENT_TYPES = ::T.let(nil, ::T.untyped)
|
1358
|
-
MSG_USE_MODIFIER = ::T.let(nil, ::T.untyped)
|
1359
|
-
MSG_USE_NORMAL = ::T.let(nil, ::T.untyped)
|
1360
|
-
end
|
1361
|
-
|
1362
|
-
class RuboCop::Cop::Style::IfUnlessModifierOfIfUnless
|
1363
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1364
|
-
end
|
1365
|
-
|
1366
|
-
class RuboCop::Cop::Style::IfWithSemicolon
|
1367
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1368
|
-
end
|
1369
|
-
|
1370
|
-
class RuboCop::Cop::Style::ImplicitRuntimeError
|
1371
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1372
|
-
end
|
1373
|
-
|
1374
|
-
class RuboCop::Cop::Style::InfiniteLoop
|
1375
|
-
LEADING_SPACE = ::T.let(nil, ::T.untyped)
|
1376
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1377
|
-
end
|
1378
|
-
|
1379
|
-
class RuboCop::Cop::Style::InlineComment
|
1380
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1381
|
-
end
|
1382
|
-
|
1383
|
-
class RuboCop::Cop::Style::InverseMethods
|
1384
|
-
CAMEL_CASE = ::T.let(nil, ::T.untyped)
|
1385
|
-
CLASS_COMPARISON_METHODS = ::T.let(nil, ::T.untyped)
|
1386
|
-
EQUALITY_METHODS = ::T.let(nil, ::T.untyped)
|
1387
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1388
|
-
NEGATED_EQUALITY_METHODS = ::T.let(nil, ::T.untyped)
|
1389
|
-
end
|
1390
|
-
|
1391
|
-
class RuboCop::Cop::Style::IpAddresses
|
1392
|
-
IPV6_MAX_SIZE = ::T.let(nil, ::T.untyped)
|
1393
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1394
|
-
end
|
1395
|
-
|
1396
|
-
class RuboCop::Cop::Style::Lambda
|
1397
|
-
LITERAL_MESSAGE = ::T.let(nil, ::T.untyped)
|
1398
|
-
METHOD_MESSAGE = ::T.let(nil, ::T.untyped)
|
1399
|
-
OFFENDING_SELECTORS = ::T.let(nil, ::T.untyped)
|
1400
|
-
end
|
1401
|
-
|
1402
|
-
class RuboCop::Cop::Style::LineEndConcatenation
|
1403
|
-
COMPLEX_STRING_BEGIN_TOKEN = ::T.let(nil, ::T.untyped)
|
1404
|
-
COMPLEX_STRING_END_TOKEN = ::T.let(nil, ::T.untyped)
|
1405
|
-
CONCAT_TOKEN_TYPES = ::T.let(nil, ::T.untyped)
|
1406
|
-
HIGH_PRECEDENCE_OP_TOKEN_TYPES = ::T.let(nil, ::T.untyped)
|
1407
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1408
|
-
QUOTE_DELIMITERS = ::T.let(nil, ::T.untyped)
|
1409
|
-
SIMPLE_STRING_TOKEN_TYPE = ::T.let(nil, ::T.untyped)
|
1410
|
-
end
|
1411
|
-
|
1412
|
-
module RuboCop::Cop::Style::MethodCallWithArgsParentheses::OmitParentheses
|
1413
|
-
TRAILING_WHITESPACE_REGEX = ::T.let(nil, ::T.untyped)
|
1414
|
-
end
|
1415
|
-
|
1416
|
-
class RuboCop::Cop::Style::MethodCallWithoutArgsParentheses
|
1417
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1418
|
-
end
|
1419
|
-
|
1420
|
-
class RuboCop::Cop::Style::MethodCalledOnDoEndBlock
|
1421
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1422
|
-
end
|
1423
|
-
|
1424
|
-
class RuboCop::Cop::Style::MethodDefParentheses
|
1425
|
-
MSG_MISSING = ::T.let(nil, ::T.untyped)
|
1426
|
-
MSG_PRESENT = ::T.let(nil, ::T.untyped)
|
1427
|
-
end
|
1428
|
-
|
1429
|
-
class RuboCop::Cop::Style::MethodMissingSuper
|
1430
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1431
|
-
end
|
1432
|
-
|
1433
|
-
class RuboCop::Cop::Style::MinMax
|
1434
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1435
|
-
end
|
1436
|
-
|
1437
|
-
class RuboCop::Cop::Style::MissingElse
|
1438
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1439
|
-
MSG_EMPTY = ::T.let(nil, ::T.untyped)
|
1440
|
-
MSG_NIL = ::T.let(nil, ::T.untyped)
|
1441
|
-
end
|
1442
|
-
|
1443
|
-
class RuboCop::Cop::Style::MissingRespondToMissing
|
1444
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1445
|
-
end
|
1446
|
-
|
1447
|
-
class RuboCop::Cop::Style::MixinGrouping
|
1448
|
-
MIXIN_METHODS = ::T.let(nil, ::T.untyped)
|
1449
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1450
|
-
end
|
1451
|
-
|
1452
|
-
class RuboCop::Cop::Style::MixinUsage
|
1453
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1454
|
-
end
|
1455
|
-
|
1456
|
-
class RuboCop::Cop::Style::ModuleFunction
|
1457
|
-
EXTEND_SELF_MSG = ::T.let(nil, ::T.untyped)
|
1458
|
-
FORBIDDEN_MSG = ::T.let(nil, ::T.untyped)
|
1459
|
-
MODULE_FUNCTION_MSG = ::T.let(nil, ::T.untyped)
|
1460
|
-
end
|
1461
|
-
|
1462
|
-
class RuboCop::Cop::Style::MultilineBlockChain
|
1463
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1464
|
-
end
|
1465
|
-
|
1466
|
-
class RuboCop::Cop::Style::MultilineIfModifier
|
1467
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1468
|
-
end
|
1469
|
-
|
1470
|
-
class RuboCop::Cop::Style::MultilineIfThen
|
1471
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1472
|
-
NON_MODIFIER_THEN = ::T.let(nil, ::T.untyped)
|
1473
|
-
end
|
1474
|
-
|
1475
|
-
class RuboCop::Cop::Style::MultilineMemoization
|
1476
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1477
|
-
end
|
1478
|
-
|
1479
|
-
class RuboCop::Cop::Style::MultilineMethodSignature
|
1480
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1481
|
-
end
|
1482
|
-
|
1483
|
-
class RuboCop::Cop::Style::MultilineTernaryOperator
|
1484
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1485
|
-
end
|
1486
|
-
|
1487
|
-
class RuboCop::Cop::Style::MultilineWhenThen
|
1488
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1489
|
-
end
|
1490
|
-
|
1491
|
-
class RuboCop::Cop::Style::MultipleComparison
|
1492
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1493
|
-
end
|
1494
|
-
|
1495
|
-
class RuboCop::Cop::Style::MutableConstant
|
1496
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1497
|
-
end
|
1498
|
-
|
1499
|
-
class RuboCop::Cop::Style::NestedModifier
|
1500
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1501
|
-
end
|
1502
|
-
|
1503
|
-
class RuboCop::Cop::Style::NestedParenthesizedCalls
|
1504
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1505
|
-
end
|
1506
|
-
|
1507
|
-
class RuboCop::Cop::Style::NestedTernaryOperator
|
1508
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1509
|
-
end
|
1510
|
-
|
1511
|
-
class RuboCop::Cop::Style::Next
|
1512
|
-
EXIT_TYPES = ::T.let(nil, ::T.untyped)
|
1513
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1514
|
-
end
|
1515
|
-
|
1516
|
-
class RuboCop::Cop::Style::NilComparison
|
1517
|
-
EXPLICIT_MSG = ::T.let(nil, ::T.untyped)
|
1518
|
-
PREDICATE_MSG = ::T.let(nil, ::T.untyped)
|
1519
|
-
end
|
1520
|
-
|
1521
|
-
class RuboCop::Cop::Style::Not
|
1522
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1523
|
-
OPPOSITE_METHODS = ::T.let(nil, ::T.untyped)
|
1524
|
-
end
|
1525
|
-
|
1526
|
-
class RuboCop::Cop::Style::NumericLiteralPrefix
|
1527
|
-
BINARY_MSG = ::T.let(nil, ::T.untyped)
|
1528
|
-
BINARY_REGEX = ::T.let(nil, ::T.untyped)
|
1529
|
-
DECIMAL_MSG = ::T.let(nil, ::T.untyped)
|
1530
|
-
DECIMAL_REGEX = ::T.let(nil, ::T.untyped)
|
1531
|
-
HEX_MSG = ::T.let(nil, ::T.untyped)
|
1532
|
-
HEX_REGEX = ::T.let(nil, ::T.untyped)
|
1533
|
-
OCTAL_MSG = ::T.let(nil, ::T.untyped)
|
1534
|
-
OCTAL_REGEX = ::T.let(nil, ::T.untyped)
|
1535
|
-
OCTAL_ZERO_ONLY_MSG = ::T.let(nil, ::T.untyped)
|
1536
|
-
OCTAL_ZERO_ONLY_REGEX = ::T.let(nil, ::T.untyped)
|
1537
|
-
end
|
1538
|
-
|
1539
|
-
class RuboCop::Cop::Style::NumericLiterals
|
1540
|
-
DELIMITER_REGEXP = ::T.let(nil, ::T.untyped)
|
1541
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1542
|
-
end
|
1543
|
-
|
1544
|
-
class RuboCop::Cop::Style::NumericPredicate
|
1545
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1546
|
-
REPLACEMENTS = ::T.let(nil, ::T.untyped)
|
1547
|
-
end
|
1548
|
-
|
1549
|
-
class RuboCop::Cop::Style::OneLineConditional
|
1550
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1551
|
-
end
|
1552
|
-
|
1553
|
-
class RuboCop::Cop::Style::OptionHash
|
1554
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1555
|
-
end
|
1556
|
-
|
1557
|
-
class RuboCop::Cop::Style::OptionalArguments
|
1558
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1559
|
-
end
|
1560
|
-
|
1561
|
-
class RuboCop::Cop::Style::OrAssignment
|
1562
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1563
|
-
end
|
1564
|
-
|
1565
|
-
class RuboCop::Cop::Style::ParallelAssignment
|
1566
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1567
|
-
end
|
1568
|
-
|
1569
|
-
class RuboCop::Cop::Style::PercentQLiterals
|
1570
|
-
LOWER_CASE_Q_MSG = ::T.let(nil, ::T.untyped)
|
1571
|
-
UPPER_CASE_Q_MSG = ::T.let(nil, ::T.untyped)
|
1572
|
-
end
|
1573
|
-
|
1574
|
-
class RuboCop::Cop::Style::PerlBackrefs
|
1575
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1576
|
-
end
|
1577
|
-
|
1578
|
-
class RuboCop::Cop::Style::PreferredHashMethods
|
1579
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1580
|
-
OFFENDING_SELECTORS = ::T.let(nil, ::T.untyped)
|
1581
|
-
end
|
1582
|
-
|
1583
|
-
class RuboCop::Cop::Style::Proc
|
1584
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1585
|
-
end
|
1586
|
-
|
1587
|
-
class RuboCop::Cop::Style::RaiseArgs
|
1588
|
-
COMPACT_MSG = ::T.let(nil, ::T.untyped)
|
1589
|
-
EXPLODED_MSG = ::T.let(nil, ::T.untyped)
|
1590
|
-
end
|
1591
|
-
|
1592
|
-
class RuboCop::Cop::Style::RandomWithOffset
|
1593
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1594
|
-
end
|
1595
|
-
|
1596
|
-
class RuboCop::Cop::Style::RedundantBegin
|
1597
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1598
|
-
end
|
1599
|
-
|
1600
|
-
class RuboCop::Cop::Style::RedundantCapitalW
|
1601
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1602
|
-
end
|
1603
|
-
|
1604
|
-
class RuboCop::Cop::Style::RedundantCondition
|
1605
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1606
|
-
REDUNDANT_CONDITION = ::T.let(nil, ::T.untyped)
|
1607
|
-
end
|
1608
|
-
|
1609
|
-
class RuboCop::Cop::Style::RedundantConditional
|
1610
|
-
COMPARISON_OPERATORS = ::T.let(nil, ::T.untyped)
|
1611
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1612
|
-
end
|
1613
|
-
|
1614
|
-
class RuboCop::Cop::Style::RedundantException
|
1615
|
-
MSG_1 = ::T.let(nil, ::T.untyped)
|
1616
|
-
MSG_2 = ::T.let(nil, ::T.untyped)
|
1617
|
-
end
|
1618
|
-
|
1619
|
-
class RuboCop::Cop::Style::RedundantFreeze
|
1620
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1621
|
-
end
|
1622
|
-
|
1623
|
-
class RuboCop::Cop::Style::RedundantInterpolation
|
1624
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1625
|
-
end
|
1626
|
-
|
1627
|
-
class RuboCop::Cop::Style::RedundantPercentQ
|
1628
|
-
DYNAMIC_MSG = ::T.let(nil, ::T.untyped)
|
1629
|
-
EMPTY = ::T.let(nil, ::T.untyped)
|
1630
|
-
ESCAPED_NON_BACKSLASH = ::T.let(nil, ::T.untyped)
|
1631
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1632
|
-
PERCENT_CAPITAL_Q = ::T.let(nil, ::T.untyped)
|
1633
|
-
PERCENT_Q = ::T.let(nil, ::T.untyped)
|
1634
|
-
QUOTE = ::T.let(nil, ::T.untyped)
|
1635
|
-
SINGLE_QUOTE = ::T.let(nil, ::T.untyped)
|
1636
|
-
STRING_INTERPOLATION_REGEXP = ::T.let(nil, ::T.untyped)
|
1637
|
-
end
|
1638
|
-
|
1639
|
-
class RuboCop::Cop::Style::RedundantRegexpCharacterClass
|
1640
|
-
MSG_REDUNDANT_CHARACTER_CLASS = ::T.let(nil, ::T.untyped)
|
1641
|
-
PATTERN = ::T.let(nil, ::T.untyped)
|
1642
|
-
end
|
1643
|
-
|
1644
|
-
class RuboCop::Cop::Style::RedundantRegexpEscape
|
1645
|
-
ALLOWED_ALWAYS_ESCAPES = ::T.let(nil, ::T.untyped)
|
1646
|
-
ALLOWED_OUTSIDE_CHAR_CLASS_METACHAR_ESCAPES = ::T.let(nil, ::T.untyped)
|
1647
|
-
ALLOWED_WITHIN_CHAR_CLASS_METACHAR_ESCAPES = ::T.let(nil, ::T.untyped)
|
1648
|
-
MSG_REDUNDANT_ESCAPE = ::T.let(nil, ::T.untyped)
|
1649
|
-
end
|
1650
|
-
|
1651
|
-
class RuboCop::Cop::Style::RedundantReturn
|
1652
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1653
|
-
MULTI_RETURN_MSG = ::T.let(nil, ::T.untyped)
|
1654
|
-
end
|
1655
|
-
|
1656
|
-
class RuboCop::Cop::Style::RedundantSelf
|
1657
|
-
KERNEL_METHODS = ::T.let(nil, ::T.untyped)
|
1658
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1659
|
-
end
|
1660
|
-
|
1661
|
-
class RuboCop::Cop::Style::RedundantSort
|
1662
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1663
|
-
end
|
1664
|
-
|
1665
|
-
class RuboCop::Cop::Style::RedundantSortBy
|
1666
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1667
|
-
end
|
1668
|
-
|
1669
|
-
class RuboCop::Cop::Style::RegexpLiteral
|
1670
|
-
MSG_USE_PERCENT_R = ::T.let(nil, ::T.untyped)
|
1671
|
-
MSG_USE_SLASHES = ::T.let(nil, ::T.untyped)
|
1672
|
-
end
|
1673
|
-
|
1674
|
-
class RuboCop::Cop::Style::RescueModifier
|
1675
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1676
|
-
end
|
1677
|
-
|
1678
|
-
class RuboCop::Cop::Style::RescueStandardError
|
1679
|
-
MSG_EXPLICIT = ::T.let(nil, ::T.untyped)
|
1680
|
-
MSG_IMPLICIT = ::T.let(nil, ::T.untyped)
|
1681
|
-
end
|
1682
|
-
|
1683
|
-
class RuboCop::Cop::Style::ReturnNil
|
1684
|
-
RETURN_MSG = ::T.let(nil, ::T.untyped)
|
1685
|
-
RETURN_NIL_MSG = ::T.let(nil, ::T.untyped)
|
1686
|
-
end
|
1687
|
-
|
1688
|
-
class RuboCop::Cop::Style::SafeNavigation
|
1689
|
-
LOGIC_JUMP_KEYWORDS = ::T.let(nil, ::T.untyped)
|
1690
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1691
|
-
end
|
1692
|
-
|
1693
|
-
class RuboCop::Cop::Style::Sample
|
1694
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1695
|
-
end
|
1696
|
-
|
1697
|
-
class RuboCop::Cop::Style::SelfAssignment
|
1698
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1699
|
-
OPS = ::T.let(nil, ::T.untyped)
|
1700
|
-
end
|
1701
|
-
|
1702
|
-
class RuboCop::Cop::Style::Semicolon
|
1703
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1704
|
-
end
|
1705
|
-
|
1706
|
-
class RuboCop::Cop::Style::Send
|
1707
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1708
|
-
end
|
1709
|
-
|
1710
|
-
class RuboCop::Cop::Style::SignalException
|
1711
|
-
FAIL_MSG = ::T.let(nil, ::T.untyped)
|
1712
|
-
RAISE_MSG = ::T.let(nil, ::T.untyped)
|
1713
|
-
end
|
1714
|
-
|
1715
|
-
class RuboCop::Cop::Style::SingleLineBlockParams
|
1716
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1717
|
-
end
|
1718
|
-
|
1719
|
-
class RuboCop::Cop::Style::SingleLineMethods
|
1720
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1721
|
-
end
|
1722
|
-
|
1723
|
-
class RuboCop::Cop::Style::SlicingWithRange
|
1724
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1725
|
-
end
|
1726
|
-
|
1727
|
-
class RuboCop::Cop::Style::SpecialGlobalVars
|
1728
|
-
ENGLISH_VARS = ::T.let(nil, ::T.untyped)
|
1729
|
-
MSG_BOTH = ::T.let(nil, ::T.untyped)
|
1730
|
-
MSG_ENGLISH = ::T.let(nil, ::T.untyped)
|
1731
|
-
MSG_REGULAR = ::T.let(nil, ::T.untyped)
|
1732
|
-
NON_ENGLISH_VARS = ::T.let(nil, ::T.untyped)
|
1733
|
-
PERL_VARS = ::T.let(nil, ::T.untyped)
|
1734
|
-
end
|
1735
|
-
|
1736
|
-
class RuboCop::Cop::Style::StabbyLambdaParentheses
|
1737
|
-
MSG_NO_REQUIRE = ::T.let(nil, ::T.untyped)
|
1738
|
-
MSG_REQUIRE = ::T.let(nil, ::T.untyped)
|
1739
|
-
end
|
1740
|
-
|
1741
|
-
class RuboCop::Cop::Style::StderrPuts
|
1742
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1743
|
-
end
|
1744
|
-
|
1745
|
-
class RuboCop::Cop::Style::StringHashKeys
|
1746
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1747
|
-
end
|
1748
|
-
|
1749
|
-
class RuboCop::Cop::Style::StringLiterals
|
1750
|
-
MSG_INCONSISTENT = ::T.let(nil, ::T.untyped)
|
1751
|
-
end
|
1752
|
-
|
1753
|
-
class RuboCop::Cop::Style::StringMethods
|
1754
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1755
|
-
end
|
1756
|
-
|
1757
|
-
class RuboCop::Cop::Style::Strip
|
1758
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1759
|
-
end
|
1760
|
-
|
1761
|
-
class RuboCop::Cop::Style::StructInheritance
|
1762
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1763
|
-
end
|
1764
|
-
|
1765
|
-
class RuboCop::Cop::Style::SymbolArray
|
1766
|
-
ARRAY_MSG = ::T.let(nil, ::T.untyped)
|
1767
|
-
PERCENT_MSG = ::T.let(nil, ::T.untyped)
|
1768
|
-
end
|
1769
|
-
|
1770
|
-
class RuboCop::Cop::Style::SymbolLiteral
|
1771
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1772
|
-
end
|
1773
|
-
|
1774
|
-
class RuboCop::Cop::Style::SymbolProc
|
1775
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1776
|
-
SUPER_TYPES = ::T.let(nil, ::T.untyped)
|
1777
|
-
end
|
1778
|
-
|
1779
|
-
class RuboCop::Cop::Style::TernaryCorrector
|
1780
|
-
extend ::RuboCop::Cop::Style::ConditionalAssignmentHelper
|
1781
|
-
extend ::RuboCop::Cop::Style::ConditionalCorrectorHelper
|
1782
|
-
end
|
1783
|
-
|
1784
|
-
class RuboCop::Cop::Style::TernaryParentheses
|
1785
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1786
|
-
MSG_COMPLEX = ::T.let(nil, ::T.untyped)
|
1787
|
-
NON_COMPLEX_TYPES = ::T.let(nil, ::T.untyped)
|
1788
|
-
VARIABLE_TYPES = ::T.let(nil, ::T.untyped)
|
1789
|
-
end
|
1790
|
-
|
1791
|
-
class RuboCop::Cop::Style::TrailingBodyOnClass
|
1792
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1793
|
-
end
|
1794
|
-
|
1795
|
-
class RuboCop::Cop::Style::TrailingBodyOnMethodDefinition
|
1796
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1797
|
-
end
|
1798
|
-
|
1799
|
-
class RuboCop::Cop::Style::TrailingBodyOnModule
|
1800
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1801
|
-
end
|
1802
|
-
|
1803
|
-
class RuboCop::Cop::Style::TrailingCommaInBlockArgs
|
1804
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1805
|
-
end
|
1806
|
-
|
1807
|
-
class RuboCop::Cop::Style::TrailingMethodEndStatement
|
1808
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1809
|
-
end
|
1810
|
-
|
1811
|
-
class RuboCop::Cop::Style::TrailingUnderscoreVariable
|
1812
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1813
|
-
UNDERSCORE = ::T.let(nil, ::T.untyped)
|
1814
|
-
end
|
1815
|
-
|
1816
|
-
class RuboCop::Cop::Style::TrivialAccessors
|
1817
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1818
|
-
end
|
1819
|
-
|
1820
|
-
class RuboCop::Cop::Style::UnlessElse
|
1821
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1822
|
-
end
|
1823
|
-
|
1824
|
-
class RuboCop::Cop::Style::UnpackFirst
|
1825
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1826
|
-
end
|
1827
|
-
|
1828
|
-
class RuboCop::Cop::Style::VariableInterpolation
|
1829
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1830
|
-
end
|
1831
|
-
|
1832
|
-
class RuboCop::Cop::Style::WhenThen
|
1833
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1834
|
-
end
|
1835
|
-
|
1836
|
-
class RuboCop::Cop::Style::WhileUntilDo
|
1837
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1838
|
-
end
|
1839
|
-
|
1840
|
-
class RuboCop::Cop::Style::WhileUntilModifier
|
1841
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1842
|
-
end
|
1843
|
-
|
1844
|
-
class RuboCop::Cop::Style::WordArray
|
1845
|
-
ARRAY_MSG = ::T.let(nil, ::T.untyped)
|
1846
|
-
PERCENT_MSG = ::T.let(nil, ::T.untyped)
|
1847
|
-
end
|
1848
|
-
|
1849
|
-
class RuboCop::Cop::Style::YodaCondition
|
1850
|
-
EQUALITY_OPERATORS = ::T.let(nil, ::T.untyped)
|
1851
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1852
|
-
NONCOMMUTATIVE_OPERATORS = ::T.let(nil, ::T.untyped)
|
1853
|
-
PROGRAM_NAMES = ::T.let(nil, ::T.untyped)
|
1854
|
-
REVERSE_COMPARISON = ::T.let(nil, ::T.untyped)
|
1855
|
-
end
|
1856
|
-
|
1857
|
-
class RuboCop::Cop::Style::ZeroLengthPredicate
|
1858
|
-
NONZERO_MSG = ::T.let(nil, ::T.untyped)
|
1859
|
-
ZERO_MSG = ::T.let(nil, ::T.untyped)
|
1860
|
-
end
|
1861
|
-
|
1862
|
-
module RuboCop::Cop::SurroundingSpace
|
1863
|
-
NO_SPACE_COMMAND = ::T.let(nil, ::T.untyped)
|
1864
|
-
SINGLE_SPACE_REGEXP = ::T.let(nil, ::T.untyped)
|
1865
|
-
SPACE_COMMAND = ::T.let(nil, ::T.untyped)
|
1866
|
-
end
|
1867
|
-
|
1868
|
-
class RuboCop::Cop::Team
|
1869
|
-
DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped)
|
1870
|
-
end
|
1871
|
-
|
1872
|
-
module RuboCop::Cop::TooManyLines
|
1873
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1874
|
-
end
|
1875
|
-
|
1876
|
-
module RuboCop::Cop::TrailingComma
|
1877
|
-
MSG = ::T.let(nil, ::T.untyped)
|
1878
|
-
end
|
1879
|
-
|
1880
|
-
module RuboCop::Cop::UncommunicativeName
|
1881
|
-
CASE_MSG = ::T.let(nil, ::T.untyped)
|
1882
|
-
FORBIDDEN_MSG = ::T.let(nil, ::T.untyped)
|
1883
|
-
LENGTH_MSG = ::T.let(nil, ::T.untyped)
|
1884
|
-
NUM_MSG = ::T.let(nil, ::T.untyped)
|
1885
|
-
end
|
1886
|
-
|
1887
|
-
module RuboCop::Cop::Util
|
1888
|
-
LITERAL_REGEX = ::T.let(nil, ::T.untyped)
|
1889
|
-
end
|
1890
|
-
|
1891
|
-
class RuboCop::Cop::Utils::FormatString
|
1892
|
-
DIGIT_DOLLAR = ::T.let(nil, ::T.untyped)
|
1893
|
-
FLAG = ::T.let(nil, ::T.untyped)
|
1894
|
-
NAME = ::T.let(nil, ::T.untyped)
|
1895
|
-
NUMBER = ::T.let(nil, ::T.untyped)
|
1896
|
-
NUMBER_ARG = ::T.let(nil, ::T.untyped)
|
1897
|
-
PRECISION = ::T.let(nil, ::T.untyped)
|
1898
|
-
SEQUENCE = ::T.let(nil, ::T.untyped)
|
1899
|
-
TEMPLATE_NAME = ::T.let(nil, ::T.untyped)
|
1900
|
-
TYPE = ::T.let(nil, ::T.untyped)
|
1901
|
-
WIDTH = ::T.let(nil, ::T.untyped)
|
1902
|
-
end
|
1903
|
-
|
1904
|
-
class RuboCop::Cop::VariableForce
|
1905
|
-
ARGUMENT_DECLARATION_TYPES = ::T.let(nil, ::T.untyped)
|
1906
|
-
LOGICAL_OPERATOR_ASSIGNMENT_TYPES = ::T.let(nil, ::T.untyped)
|
1907
|
-
LOOP_TYPES = ::T.let(nil, ::T.untyped)
|
1908
|
-
MULTIPLE_ASSIGNMENT_TYPE = ::T.let(nil, ::T.untyped)
|
1909
|
-
OPERATOR_ASSIGNMENT_TYPES = ::T.let(nil, ::T.untyped)
|
1910
|
-
POST_CONDITION_LOOP_TYPES = ::T.let(nil, ::T.untyped)
|
1911
|
-
REGEXP_NAMED_CAPTURE_TYPE = ::T.let(nil, ::T.untyped)
|
1912
|
-
RESCUE_TYPE = ::T.let(nil, ::T.untyped)
|
1913
|
-
SCOPE_TYPES = ::T.let(nil, ::T.untyped)
|
1914
|
-
SEND_TYPE = ::T.let(nil, ::T.untyped)
|
1915
|
-
TWISTED_SCOPE_TYPES = ::T.let(nil, ::T.untyped)
|
1916
|
-
VARIABLE_ASSIGNMENT_TYPE = ::T.let(nil, ::T.untyped)
|
1917
|
-
VARIABLE_ASSIGNMENT_TYPES = ::T.let(nil, ::T.untyped)
|
1918
|
-
VARIABLE_REFERENCE_TYPE = ::T.let(nil, ::T.untyped)
|
1919
|
-
ZERO_ARITY_SUPER_TYPE = ::T.let(nil, ::T.untyped)
|
1920
|
-
end
|
1921
|
-
|
1922
|
-
class RuboCop::Cop::VariableForce::Assignment
|
1923
|
-
MULTIPLE_LEFT_HAND_SIDE_TYPE = ::T.let(nil, ::T.untyped)
|
1924
|
-
end
|
1925
|
-
|
1926
|
-
module RuboCop::Cop::VariableForce::Branch
|
1927
|
-
CLASSES_BY_TYPE = ::T.let(nil, ::T.untyped)
|
1928
|
-
end
|
1929
|
-
|
1930
|
-
class RuboCop::Cop::VariableForce::Reference
|
1931
|
-
VARIABLE_REFERENCE_TYPES = ::T.let(nil, ::T.untyped)
|
1932
|
-
end
|
1933
|
-
|
1934
|
-
class RuboCop::Cop::VariableForce::Scope
|
1935
|
-
OUTER_SCOPE_CHILD_INDICES = ::T.let(nil, ::T.untyped)
|
1936
|
-
end
|
1937
|
-
|
1938
|
-
class RuboCop::Cop::VariableForce::Variable
|
1939
|
-
VARIABLE_DECLARATION_TYPES = ::T.let(nil, ::T.untyped)
|
1940
|
-
end
|
1941
|
-
|
1942
|
-
class RuboCop::Cop::WorkaroundCop
|
1943
|
-
include ::RuboCop::AST::Sexp
|
1944
|
-
include ::RuboCop::Cop::Util
|
1945
|
-
include ::RuboCop::PathUtil
|
1946
|
-
include ::RuboCop::Cop::IgnoredNode
|
1947
|
-
include ::RuboCop::Cop::AutocorrectLogic
|
1948
|
-
end
|
1949
|
-
|
1950
|
-
class RuboCop::Cop::WorkaroundCop
|
1951
|
-
extend ::RuboCop::AST::Sexp
|
1952
|
-
extend ::RuboCop::AST::NodePattern::Macros
|
1953
|
-
def self.all(); end
|
1954
|
-
|
1955
|
-
def self.autocorrect_incompatible_with(); end
|
1956
|
-
|
1957
|
-
def self.badge(); end
|
1958
|
-
|
1959
|
-
def self.cop_name(); end
|
1960
|
-
|
1961
|
-
def self.department(); end
|
1962
|
-
|
1963
|
-
def self.inherited(*_); end
|
1964
|
-
|
1965
|
-
def self.lint?(); end
|
1966
|
-
|
1967
|
-
def self.match?(given_names); end
|
1968
|
-
|
1969
|
-
def self.qualified_cop_name(name, origin); end
|
1970
|
-
|
1971
|
-
def self.registry(); end
|
1972
|
-
end
|
1973
|
-
|
1974
|
-
class RuboCop::Formatter::ClangStyleFormatter
|
1975
|
-
ELLIPSES = ::T.let(nil, ::T.untyped)
|
1976
|
-
end
|
1977
|
-
|
1978
|
-
class RuboCop::Formatter::DisabledConfigFormatter
|
1979
|
-
HEADING = ::T.let(nil, ::T.untyped)
|
1980
|
-
end
|
1981
|
-
|
1982
|
-
class RuboCop::Formatter::FormatterSet
|
1983
|
-
BUILTIN_FORMATTERS_FOR_KEYS = ::T.let(nil, ::T.untyped)
|
1984
|
-
FORMATTER_APIS = ::T.let(nil, ::T.untyped)
|
1985
|
-
end
|
1986
|
-
|
1987
|
-
class RuboCop::Formatter::FuubarStyleFormatter
|
1988
|
-
RESET_SEQUENCE = ::T.let(nil, ::T.untyped)
|
1989
|
-
end
|
1990
|
-
|
1991
|
-
class RuboCop::Formatter::HTMLFormatter
|
1992
|
-
ELLIPSES = ::T.let(nil, ::T.untyped)
|
1993
|
-
TEMPLATE_PATH = ::T.let(nil, ::T.untyped)
|
1994
|
-
end
|
1995
|
-
|
1996
|
-
class RuboCop::Formatter::HTMLFormatter::ERBContext
|
1997
|
-
LOGO_IMAGE_PATH = ::T.let(nil, ::T.untyped)
|
1998
|
-
SEVERITY_COLORS = ::T.let(nil, ::T.untyped)
|
1999
|
-
end
|
2000
|
-
|
2001
|
-
class RuboCop::Formatter::PacmanFormatter
|
2002
|
-
FALLBACK_TERMINAL_WIDTH = ::T.let(nil, ::T.untyped)
|
2003
|
-
GHOST = ::T.let(nil, ::T.untyped)
|
2004
|
-
PACDOT = ::T.let(nil, ::T.untyped)
|
2005
|
-
PACMAN = ::T.let(nil, ::T.untyped)
|
2006
|
-
end
|
2007
|
-
|
2008
|
-
class RuboCop::Formatter::ProgressFormatter
|
2009
|
-
DOT = ::T.let(nil, ::T.untyped)
|
2010
|
-
end
|
2011
|
-
|
2012
|
-
class RuboCop::Formatter::SimpleTextFormatter
|
2013
|
-
COLOR_FOR_SEVERITY = ::T.let(nil, ::T.untyped)
|
2014
|
-
end
|
2015
|
-
|
2016
|
-
class RuboCop::MagicComment
|
2017
|
-
TOKEN = ::T.let(nil, ::T.untyped)
|
2018
|
-
end
|
2019
|
-
|
2020
|
-
class RuboCop::MagicComment::EmacsComment
|
2021
|
-
FORMAT = ::T.let(nil, ::T.untyped)
|
2022
|
-
OPERATOR = ::T.let(nil, ::T.untyped)
|
2023
|
-
SEPARATOR = ::T.let(nil, ::T.untyped)
|
2024
|
-
end
|
2025
|
-
|
2026
|
-
class RuboCop::MagicComment::VimComment
|
2027
|
-
FORMAT = ::T.let(nil, ::T.untyped)
|
2028
|
-
OPERATOR = ::T.let(nil, ::T.untyped)
|
2029
|
-
SEPARATOR = ::T.let(nil, ::T.untyped)
|
2030
|
-
end
|
2031
|
-
|
2032
|
-
class RuboCop::Options
|
2033
|
-
DEFAULT_MAXIMUM_EXCLUSION_ITEMS = ::T.let(nil, ::T.untyped)
|
2034
|
-
EXITING_OPTIONS = ::T.let(nil, ::T.untyped)
|
2035
|
-
E_STDIN_NO_PATH = ::T.let(nil, ::T.untyped)
|
2036
|
-
end
|
2037
|
-
|
2038
|
-
module RuboCop::OptionsHelp
|
2039
|
-
FORMATTER_OPTION_LIST = ::T.let(nil, ::T.untyped)
|
2040
|
-
MAX_EXCL = ::T.let(nil, ::T.untyped)
|
2041
|
-
TEXT = ::T.let(nil, ::T.untyped)
|
2042
|
-
end
|
2043
|
-
|
2044
|
-
class RuboCop::RemoteConfig
|
2045
|
-
CACHE_LIFETIME = ::T.let(nil, ::T.untyped)
|
2046
|
-
end
|
2047
|
-
|
2048
|
-
class RuboCop::ResultCache
|
2049
|
-
NON_CHANGING = ::T.let(nil, ::T.untyped)
|
2050
|
-
end
|
2051
|
-
|
2052
|
-
class RuboCop::Runner
|
2053
|
-
MAX_ITERATIONS = ::T.let(nil, ::T.untyped)
|
2054
|
-
end
|
2055
|
-
|
2056
|
-
class RuboCop::StringInterpreter
|
2057
|
-
STRING_ESCAPES = ::T.let(nil, ::T.untyped)
|
2058
|
-
STRING_ESCAPE_REGEX = ::T.let(nil, ::T.untyped)
|
2059
|
-
end
|
2060
|
-
|
2061
|
-
class RuboCop::TargetRuby
|
2062
|
-
DEFAULT_VERSION = ::T.let(nil, ::T.untyped)
|
2063
|
-
end
|
2064
|
-
|
2065
|
-
class RuboCop::TargetRuby::RubyVersionFile
|
2066
|
-
FILENAME = ::T.let(nil, ::T.untyped)
|
2067
|
-
end
|
2068
|
-
|
2069
|
-
module RuboCop::Version
|
2070
|
-
MSG = ::T.let(nil, ::T.untyped)
|
2071
|
-
STRING = ::T.let(nil, ::T.untyped)
|
2072
|
-
end
|