yamlint 0.1.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +31 -9
- data/.serena/.gitignore +1 -0
- data/.serena/memories/project_overview.md +25 -0
- data/.serena/memories/style_and_conventions.md +7 -0
- data/.serena/memories/suggested_commands.md +17 -0
- data/.serena/memories/task_completion.md +5 -0
- data/.serena/project.yml +89 -0
- data/CHANGELOG.md +6 -2
- data/Gemfile +9 -7
- data/LICENSE.txt +1 -1
- data/README.md +155 -17
- data/Rakefile +10 -3
- data/docs/Yamlint/Cli.html +403 -0
- data/docs/Yamlint/Config.html +1034 -0
- data/docs/Yamlint/Formatter.html +433 -0
- data/docs/Yamlint/Linter.html +423 -0
- data/docs/Yamlint/Models/LintContext.html +993 -0
- data/docs/Yamlint/Models/Problem.html +951 -0
- data/docs/Yamlint/Models/Token.html +713 -0
- data/docs/Yamlint/Models.html +117 -0
- data/docs/Yamlint/Output/Base.html +290 -0
- data/docs/Yamlint/Output/Colored.html +293 -0
- data/docs/Yamlint/Output/Github.html +260 -0
- data/docs/Yamlint/Output/Parsable.html +258 -0
- data/docs/Yamlint/Output/Standard.html +270 -0
- data/docs/Yamlint/Output.html +208 -0
- data/docs/Yamlint/Parser/Comment.html +795 -0
- data/docs/Yamlint/Parser/CommentExtractor.html +287 -0
- data/docs/Yamlint/Parser/LineParser.html +423 -0
- data/docs/Yamlint/Parser/TokenParser/Handler.html +910 -0
- data/docs/Yamlint/Parser/TokenParser.html +291 -0
- data/docs/Yamlint/Parser.html +117 -0
- data/docs/Yamlint/Presets.html +266 -0
- data/docs/Yamlint/Rules/Anchors/AnchorHandler.html +678 -0
- data/docs/Yamlint/Rules/Anchors.html +314 -0
- data/docs/Yamlint/Rules/Base.html +968 -0
- data/docs/Yamlint/Rules/Braces.html +335 -0
- data/docs/Yamlint/Rules/Brackets.html +335 -0
- data/docs/Yamlint/Rules/Colons.html +313 -0
- data/docs/Yamlint/Rules/Commas.html +313 -0
- data/docs/Yamlint/Rules/CommentRule.html +298 -0
- data/docs/Yamlint/Rules/Comments.html +317 -0
- data/docs/Yamlint/Rules/CommentsIndentation.html +328 -0
- data/docs/Yamlint/Rules/DocumentEnd.html +332 -0
- data/docs/Yamlint/Rules/DocumentStart.html +332 -0
- data/docs/Yamlint/Rules/EmptyLines.html +300 -0
- data/docs/Yamlint/Rules/EmptyValues.html +273 -0
- data/docs/Yamlint/Rules/FloatValues.html +383 -0
- data/docs/Yamlint/Rules/Hyphens.html +337 -0
- data/docs/Yamlint/Rules/Indentation.html +329 -0
- data/docs/Yamlint/Rules/KeyDuplicates/DuplicateKeyHandler.html +716 -0
- data/docs/Yamlint/Rules/KeyDuplicates.html +258 -0
- data/docs/Yamlint/Rules/KeyOrdering/KeyOrderHandler.html +694 -0
- data/docs/Yamlint/Rules/KeyOrdering.html +258 -0
- data/docs/Yamlint/Rules/LineLength.html +251 -0
- data/docs/Yamlint/Rules/LineRule.html +304 -0
- data/docs/Yamlint/Rules/NewLineAtEndOfFile.html +308 -0
- data/docs/Yamlint/Rules/NewLines.html +310 -0
- data/docs/Yamlint/Rules/OctalValues.html +270 -0
- data/docs/Yamlint/Rules/QuotedStrings.html +381 -0
- data/docs/Yamlint/Rules/Registry.html +492 -0
- data/docs/Yamlint/Rules/TokenRule.html +298 -0
- data/docs/Yamlint/Rules/TrailingSpaces.html +321 -0
- data/docs/Yamlint/Rules/Truthy.html +288 -0
- data/docs/Yamlint/Rules.html +190 -0
- data/docs/Yamlint/Runner.html +551 -0
- data/docs/Yamlint.html +135 -0
- data/docs/_index.html +643 -0
- data/docs/class_list.html +54 -0
- data/docs/css/common.css +1 -0
- data/docs/css/full_list.css +58 -0
- data/docs/css/style.css +490 -0
- data/docs/file.README.html +276 -0
- data/docs/file_list.html +59 -0
- data/docs/frames.html +22 -0
- data/docs/index.html +276 -0
- data/docs/js/app.js +395 -0
- data/docs/js/full_list.js +244 -0
- data/docs/js/jquery.js +4 -0
- data/docs/method_list.html +1582 -0
- data/docs/top-level-namespace.html +110 -0
- data/exe/yamlint +7 -0
- data/lib/yamlint/cli.rb +162 -0
- data/lib/yamlint/config.rb +113 -0
- data/lib/yamlint/formatter.rb +140 -0
- data/lib/yamlint/linter.rb +130 -0
- data/lib/yamlint/models/lint_context.rb +43 -0
- data/lib/yamlint/models/problem.rb +44 -0
- data/lib/yamlint/models/token.rb +22 -0
- data/lib/yamlint/models.rb +9 -0
- data/lib/yamlint/output/base.rb +15 -0
- data/lib/yamlint/output/colored.rb +54 -0
- data/lib/yamlint/output/github.rb +20 -0
- data/lib/yamlint/output/parsable.rb +19 -0
- data/lib/yamlint/output/standard.rb +25 -0
- data/lib/yamlint/output.rb +26 -0
- data/lib/yamlint/parser/comment_extractor.rb +78 -0
- data/lib/yamlint/parser/line_parser.rb +30 -0
- data/lib/yamlint/parser/token_parser.rb +92 -0
- data/lib/yamlint/parser.rb +10 -0
- data/lib/yamlint/presets/default.rb +35 -0
- data/lib/yamlint/presets/relaxed.rb +34 -0
- data/lib/yamlint/presets.rb +19 -0
- data/lib/yamlint/rules/anchors.rb +133 -0
- data/lib/yamlint/rules/base.rb +102 -0
- data/lib/yamlint/rules/braces.rb +105 -0
- data/lib/yamlint/rules/brackets.rb +105 -0
- data/lib/yamlint/rules/colons.rb +73 -0
- data/lib/yamlint/rules/commas.rb +85 -0
- data/lib/yamlint/rules/comments.rb +77 -0
- data/lib/yamlint/rules/comments_indentation.rb +66 -0
- data/lib/yamlint/rules/document_end.rb +45 -0
- data/lib/yamlint/rules/document_start.rb +45 -0
- data/lib/yamlint/rules/empty_lines.rb +107 -0
- data/lib/yamlint/rules/empty_values.rb +43 -0
- data/lib/yamlint/rules/float_values.rb +67 -0
- data/lib/yamlint/rules/hyphens.rb +42 -0
- data/lib/yamlint/rules/indentation.rb +39 -0
- data/lib/yamlint/rules/key_duplicates.rb +127 -0
- data/lib/yamlint/rules/key_ordering.rb +126 -0
- data/lib/yamlint/rules/line_length.rb +57 -0
- data/lib/yamlint/rules/new_line_at_end_of_file.rb +31 -0
- data/lib/yamlint/rules/new_lines.rb +59 -0
- data/lib/yamlint/rules/octal_values.rb +62 -0
- data/lib/yamlint/rules/quoted_strings.rb +73 -0
- data/lib/yamlint/rules/registry.rb +48 -0
- data/lib/yamlint/rules/trailing_spaces.rb +31 -0
- data/lib/yamlint/rules/truthy.rb +48 -0
- data/lib/yamlint/rules.rb +41 -0
- data/lib/yamlint/runner.rb +80 -0
- data/lib/yamlint/version.rb +1 -1
- data/lib/yamlint.rb +11 -3
- metadata +131 -11
- data/CODE_OF_CONDUCT.md +0 -84
- data/sig/yamlint.rbs +0 -4
data/docs/_index.html
ADDED
|
@@ -0,0 +1,643 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>
|
|
7
|
+
Documentation by YARD 0.9.38
|
|
8
|
+
|
|
9
|
+
</title>
|
|
10
|
+
|
|
11
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" />
|
|
12
|
+
|
|
13
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" />
|
|
14
|
+
|
|
15
|
+
<script type="text/javascript">
|
|
16
|
+
pathId = null;
|
|
17
|
+
relpath = '';
|
|
18
|
+
</script>
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
|
22
|
+
|
|
23
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
</head>
|
|
27
|
+
<body>
|
|
28
|
+
<div class="nav_wrap">
|
|
29
|
+
<iframe id="nav" src="class_list.html?1"></iframe>
|
|
30
|
+
<div id="resizer"></div>
|
|
31
|
+
</div>
|
|
32
|
+
|
|
33
|
+
<div id="main" tabindex="-1">
|
|
34
|
+
<div id="header">
|
|
35
|
+
<div id="menu">
|
|
36
|
+
|
|
37
|
+
</div>
|
|
38
|
+
|
|
39
|
+
<div id="search">
|
|
40
|
+
|
|
41
|
+
<a class="full_list_link" id="class_list_link"
|
|
42
|
+
href="class_list.html">
|
|
43
|
+
|
|
44
|
+
<svg width="24" height="24">
|
|
45
|
+
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
|
|
46
|
+
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
|
|
47
|
+
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
|
|
48
|
+
</svg>
|
|
49
|
+
</a>
|
|
50
|
+
|
|
51
|
+
</div>
|
|
52
|
+
<div class="clear"></div>
|
|
53
|
+
</div>
|
|
54
|
+
|
|
55
|
+
<div id="content"><h1 class="noborder title">Documentation by YARD 0.9.38</h1>
|
|
56
|
+
<div id="listing">
|
|
57
|
+
<h1 class="alphaindex">Alphabetic Index</h1>
|
|
58
|
+
|
|
59
|
+
<h2>File Listing</h2>
|
|
60
|
+
<ul id="files" class="index_inline_list">
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
<li class="r1"><a href="index.html" title="README">README</a></li>
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
</ul>
|
|
67
|
+
|
|
68
|
+
<div class="clear"></div>
|
|
69
|
+
<h2>Namespace Listing A-Z</h2>
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
<table>
|
|
75
|
+
<tr>
|
|
76
|
+
<td valign='top' width="33%">
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
<ul id="alpha_A" class="alpha">
|
|
80
|
+
<li class="letter">A</li>
|
|
81
|
+
<ul>
|
|
82
|
+
|
|
83
|
+
<li>
|
|
84
|
+
<span class='object_link'><a href="Yamlint/Rules/Anchors/AnchorHandler.html" title="Yamlint::Rules::Anchors::AnchorHandler (class)">AnchorHandler</a></span>
|
|
85
|
+
|
|
86
|
+
<small>(Yamlint::Rules::Anchors)</small>
|
|
87
|
+
|
|
88
|
+
</li>
|
|
89
|
+
|
|
90
|
+
<li>
|
|
91
|
+
<span class='object_link'><a href="Yamlint/Rules/Anchors.html" title="Yamlint::Rules::Anchors (class)">Anchors</a></span>
|
|
92
|
+
|
|
93
|
+
<small>(Yamlint::Rules)</small>
|
|
94
|
+
|
|
95
|
+
</li>
|
|
96
|
+
|
|
97
|
+
</ul>
|
|
98
|
+
</ul>
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
<ul id="alpha_B" class="alpha">
|
|
102
|
+
<li class="letter">B</li>
|
|
103
|
+
<ul>
|
|
104
|
+
|
|
105
|
+
<li>
|
|
106
|
+
<span class='object_link'><a href="Yamlint/Rules/Base.html" title="Yamlint::Rules::Base (class)">Base</a></span>
|
|
107
|
+
|
|
108
|
+
<small>(Yamlint::Rules)</small>
|
|
109
|
+
|
|
110
|
+
</li>
|
|
111
|
+
|
|
112
|
+
<li>
|
|
113
|
+
<span class='object_link'><a href="Yamlint/Output/Base.html" title="Yamlint::Output::Base (class)">Base</a></span>
|
|
114
|
+
|
|
115
|
+
<small>(Yamlint::Output)</small>
|
|
116
|
+
|
|
117
|
+
</li>
|
|
118
|
+
|
|
119
|
+
<li>
|
|
120
|
+
<span class='object_link'><a href="Yamlint/Rules/Braces.html" title="Yamlint::Rules::Braces (class)">Braces</a></span>
|
|
121
|
+
|
|
122
|
+
<small>(Yamlint::Rules)</small>
|
|
123
|
+
|
|
124
|
+
</li>
|
|
125
|
+
|
|
126
|
+
<li>
|
|
127
|
+
<span class='object_link'><a href="Yamlint/Rules/Brackets.html" title="Yamlint::Rules::Brackets (class)">Brackets</a></span>
|
|
128
|
+
|
|
129
|
+
<small>(Yamlint::Rules)</small>
|
|
130
|
+
|
|
131
|
+
</li>
|
|
132
|
+
|
|
133
|
+
</ul>
|
|
134
|
+
</ul>
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
<ul id="alpha_C" class="alpha">
|
|
138
|
+
<li class="letter">C</li>
|
|
139
|
+
<ul>
|
|
140
|
+
|
|
141
|
+
<li>
|
|
142
|
+
<span class='object_link'><a href="Yamlint/Cli.html" title="Yamlint::Cli (class)">Cli</a></span>
|
|
143
|
+
|
|
144
|
+
<small>(Yamlint)</small>
|
|
145
|
+
|
|
146
|
+
</li>
|
|
147
|
+
|
|
148
|
+
<li>
|
|
149
|
+
<span class='object_link'><a href="Yamlint/Rules/Colons.html" title="Yamlint::Rules::Colons (class)">Colons</a></span>
|
|
150
|
+
|
|
151
|
+
<small>(Yamlint::Rules)</small>
|
|
152
|
+
|
|
153
|
+
</li>
|
|
154
|
+
|
|
155
|
+
<li>
|
|
156
|
+
<span class='object_link'><a href="Yamlint/Output/Colored.html" title="Yamlint::Output::Colored (class)">Colored</a></span>
|
|
157
|
+
|
|
158
|
+
<small>(Yamlint::Output)</small>
|
|
159
|
+
|
|
160
|
+
</li>
|
|
161
|
+
|
|
162
|
+
<li>
|
|
163
|
+
<span class='object_link'><a href="Yamlint/Rules/Commas.html" title="Yamlint::Rules::Commas (class)">Commas</a></span>
|
|
164
|
+
|
|
165
|
+
<small>(Yamlint::Rules)</small>
|
|
166
|
+
|
|
167
|
+
</li>
|
|
168
|
+
|
|
169
|
+
<li>
|
|
170
|
+
<span class='object_link'><a href="Yamlint/Parser/Comment.html" title="Yamlint::Parser::Comment (class)">Comment</a></span>
|
|
171
|
+
|
|
172
|
+
<small>(Yamlint::Parser)</small>
|
|
173
|
+
|
|
174
|
+
</li>
|
|
175
|
+
|
|
176
|
+
<li>
|
|
177
|
+
<span class='object_link'><a href="Yamlint/Parser/CommentExtractor.html" title="Yamlint::Parser::CommentExtractor (class)">CommentExtractor</a></span>
|
|
178
|
+
|
|
179
|
+
<small>(Yamlint::Parser)</small>
|
|
180
|
+
|
|
181
|
+
</li>
|
|
182
|
+
|
|
183
|
+
<li>
|
|
184
|
+
<span class='object_link'><a href="Yamlint/Rules/CommentRule.html" title="Yamlint::Rules::CommentRule (class)">CommentRule</a></span>
|
|
185
|
+
|
|
186
|
+
<small>(Yamlint::Rules)</small>
|
|
187
|
+
|
|
188
|
+
</li>
|
|
189
|
+
|
|
190
|
+
<li>
|
|
191
|
+
<span class='object_link'><a href="Yamlint/Rules/Comments.html" title="Yamlint::Rules::Comments (class)">Comments</a></span>
|
|
192
|
+
|
|
193
|
+
<small>(Yamlint::Rules)</small>
|
|
194
|
+
|
|
195
|
+
</li>
|
|
196
|
+
|
|
197
|
+
<li>
|
|
198
|
+
<span class='object_link'><a href="Yamlint/Rules/CommentsIndentation.html" title="Yamlint::Rules::CommentsIndentation (class)">CommentsIndentation</a></span>
|
|
199
|
+
|
|
200
|
+
<small>(Yamlint::Rules)</small>
|
|
201
|
+
|
|
202
|
+
</li>
|
|
203
|
+
|
|
204
|
+
<li>
|
|
205
|
+
<span class='object_link'><a href="Yamlint/Config.html" title="Yamlint::Config (class)">Config</a></span>
|
|
206
|
+
|
|
207
|
+
<small>(Yamlint)</small>
|
|
208
|
+
|
|
209
|
+
</li>
|
|
210
|
+
|
|
211
|
+
</ul>
|
|
212
|
+
</ul>
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
<ul id="alpha_D" class="alpha">
|
|
216
|
+
<li class="letter">D</li>
|
|
217
|
+
<ul>
|
|
218
|
+
|
|
219
|
+
<li>
|
|
220
|
+
<span class='object_link'><a href="Yamlint/Rules/DocumentEnd.html" title="Yamlint::Rules::DocumentEnd (class)">DocumentEnd</a></span>
|
|
221
|
+
|
|
222
|
+
<small>(Yamlint::Rules)</small>
|
|
223
|
+
|
|
224
|
+
</li>
|
|
225
|
+
|
|
226
|
+
<li>
|
|
227
|
+
<span class='object_link'><a href="Yamlint/Rules/DocumentStart.html" title="Yamlint::Rules::DocumentStart (class)">DocumentStart</a></span>
|
|
228
|
+
|
|
229
|
+
<small>(Yamlint::Rules)</small>
|
|
230
|
+
|
|
231
|
+
</li>
|
|
232
|
+
|
|
233
|
+
<li>
|
|
234
|
+
<span class='object_link'><a href="Yamlint/Rules/KeyDuplicates/DuplicateKeyHandler.html" title="Yamlint::Rules::KeyDuplicates::DuplicateKeyHandler (class)">DuplicateKeyHandler</a></span>
|
|
235
|
+
|
|
236
|
+
<small>(Yamlint::Rules::KeyDuplicates)</small>
|
|
237
|
+
|
|
238
|
+
</li>
|
|
239
|
+
|
|
240
|
+
</ul>
|
|
241
|
+
</ul>
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
<ul id="alpha_E" class="alpha">
|
|
245
|
+
<li class="letter">E</li>
|
|
246
|
+
<ul>
|
|
247
|
+
|
|
248
|
+
<li>
|
|
249
|
+
<span class='object_link'><a href="Yamlint/Rules/EmptyLines.html" title="Yamlint::Rules::EmptyLines (class)">EmptyLines</a></span>
|
|
250
|
+
|
|
251
|
+
<small>(Yamlint::Rules)</small>
|
|
252
|
+
|
|
253
|
+
</li>
|
|
254
|
+
|
|
255
|
+
<li>
|
|
256
|
+
<span class='object_link'><a href="Yamlint/Rules/EmptyValues.html" title="Yamlint::Rules::EmptyValues (class)">EmptyValues</a></span>
|
|
257
|
+
|
|
258
|
+
<small>(Yamlint::Rules)</small>
|
|
259
|
+
|
|
260
|
+
</li>
|
|
261
|
+
|
|
262
|
+
</ul>
|
|
263
|
+
</ul>
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
<ul id="alpha_F" class="alpha">
|
|
267
|
+
<li class="letter">F</li>
|
|
268
|
+
<ul>
|
|
269
|
+
|
|
270
|
+
<li>
|
|
271
|
+
<span class='object_link'><a href="Yamlint/Rules/FloatValues.html" title="Yamlint::Rules::FloatValues (class)">FloatValues</a></span>
|
|
272
|
+
|
|
273
|
+
<small>(Yamlint::Rules)</small>
|
|
274
|
+
|
|
275
|
+
</li>
|
|
276
|
+
|
|
277
|
+
<li>
|
|
278
|
+
<span class='object_link'><a href="Yamlint/Formatter.html" title="Yamlint::Formatter (class)">Formatter</a></span>
|
|
279
|
+
|
|
280
|
+
<small>(Yamlint)</small>
|
|
281
|
+
|
|
282
|
+
</li>
|
|
283
|
+
|
|
284
|
+
</ul>
|
|
285
|
+
</ul>
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
<ul id="alpha_G" class="alpha">
|
|
289
|
+
<li class="letter">G</li>
|
|
290
|
+
<ul>
|
|
291
|
+
|
|
292
|
+
<li>
|
|
293
|
+
<span class='object_link'><a href="Yamlint/Output/Github.html" title="Yamlint::Output::Github (class)">Github</a></span>
|
|
294
|
+
|
|
295
|
+
<small>(Yamlint::Output)</small>
|
|
296
|
+
|
|
297
|
+
</li>
|
|
298
|
+
|
|
299
|
+
</ul>
|
|
300
|
+
</ul>
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
</td><td valign='top' width="33%">
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
<ul id="alpha_H" class="alpha">
|
|
307
|
+
<li class="letter">H</li>
|
|
308
|
+
<ul>
|
|
309
|
+
|
|
310
|
+
<li>
|
|
311
|
+
<span class='object_link'><a href="Yamlint/Parser/TokenParser/Handler.html" title="Yamlint::Parser::TokenParser::Handler (class)">Handler</a></span>
|
|
312
|
+
|
|
313
|
+
<small>(Yamlint::Parser::TokenParser)</small>
|
|
314
|
+
|
|
315
|
+
</li>
|
|
316
|
+
|
|
317
|
+
<li>
|
|
318
|
+
<span class='object_link'><a href="Yamlint/Rules/Hyphens.html" title="Yamlint::Rules::Hyphens (class)">Hyphens</a></span>
|
|
319
|
+
|
|
320
|
+
<small>(Yamlint::Rules)</small>
|
|
321
|
+
|
|
322
|
+
</li>
|
|
323
|
+
|
|
324
|
+
</ul>
|
|
325
|
+
</ul>
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
<ul id="alpha_I" class="alpha">
|
|
329
|
+
<li class="letter">I</li>
|
|
330
|
+
<ul>
|
|
331
|
+
|
|
332
|
+
<li>
|
|
333
|
+
<span class='object_link'><a href="Yamlint/Rules/Indentation.html" title="Yamlint::Rules::Indentation (class)">Indentation</a></span>
|
|
334
|
+
|
|
335
|
+
<small>(Yamlint::Rules)</small>
|
|
336
|
+
|
|
337
|
+
</li>
|
|
338
|
+
|
|
339
|
+
</ul>
|
|
340
|
+
</ul>
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
<ul id="alpha_K" class="alpha">
|
|
344
|
+
<li class="letter">K</li>
|
|
345
|
+
<ul>
|
|
346
|
+
|
|
347
|
+
<li>
|
|
348
|
+
<span class='object_link'><a href="Yamlint/Rules/KeyDuplicates.html" title="Yamlint::Rules::KeyDuplicates (class)">KeyDuplicates</a></span>
|
|
349
|
+
|
|
350
|
+
<small>(Yamlint::Rules)</small>
|
|
351
|
+
|
|
352
|
+
</li>
|
|
353
|
+
|
|
354
|
+
<li>
|
|
355
|
+
<span class='object_link'><a href="Yamlint/Rules/KeyOrdering/KeyOrderHandler.html" title="Yamlint::Rules::KeyOrdering::KeyOrderHandler (class)">KeyOrderHandler</a></span>
|
|
356
|
+
|
|
357
|
+
<small>(Yamlint::Rules::KeyOrdering)</small>
|
|
358
|
+
|
|
359
|
+
</li>
|
|
360
|
+
|
|
361
|
+
<li>
|
|
362
|
+
<span class='object_link'><a href="Yamlint/Rules/KeyOrdering.html" title="Yamlint::Rules::KeyOrdering (class)">KeyOrdering</a></span>
|
|
363
|
+
|
|
364
|
+
<small>(Yamlint::Rules)</small>
|
|
365
|
+
|
|
366
|
+
</li>
|
|
367
|
+
|
|
368
|
+
</ul>
|
|
369
|
+
</ul>
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
<ul id="alpha_L" class="alpha">
|
|
373
|
+
<li class="letter">L</li>
|
|
374
|
+
<ul>
|
|
375
|
+
|
|
376
|
+
<li>
|
|
377
|
+
<span class='object_link'><a href="Yamlint/Rules/LineLength.html" title="Yamlint::Rules::LineLength (class)">LineLength</a></span>
|
|
378
|
+
|
|
379
|
+
<small>(Yamlint::Rules)</small>
|
|
380
|
+
|
|
381
|
+
</li>
|
|
382
|
+
|
|
383
|
+
<li>
|
|
384
|
+
<span class='object_link'><a href="Yamlint/Parser/LineParser.html" title="Yamlint::Parser::LineParser (class)">LineParser</a></span>
|
|
385
|
+
|
|
386
|
+
<small>(Yamlint::Parser)</small>
|
|
387
|
+
|
|
388
|
+
</li>
|
|
389
|
+
|
|
390
|
+
<li>
|
|
391
|
+
<span class='object_link'><a href="Yamlint/Rules/LineRule.html" title="Yamlint::Rules::LineRule (class)">LineRule</a></span>
|
|
392
|
+
|
|
393
|
+
<small>(Yamlint::Rules)</small>
|
|
394
|
+
|
|
395
|
+
</li>
|
|
396
|
+
|
|
397
|
+
<li>
|
|
398
|
+
<span class='object_link'><a href="Yamlint/Models/LintContext.html" title="Yamlint::Models::LintContext (class)">LintContext</a></span>
|
|
399
|
+
|
|
400
|
+
<small>(Yamlint::Models)</small>
|
|
401
|
+
|
|
402
|
+
</li>
|
|
403
|
+
|
|
404
|
+
<li>
|
|
405
|
+
<span class='object_link'><a href="Yamlint/Linter.html" title="Yamlint::Linter (class)">Linter</a></span>
|
|
406
|
+
|
|
407
|
+
<small>(Yamlint)</small>
|
|
408
|
+
|
|
409
|
+
</li>
|
|
410
|
+
|
|
411
|
+
</ul>
|
|
412
|
+
</ul>
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
<ul id="alpha_M" class="alpha">
|
|
416
|
+
<li class="letter">M</li>
|
|
417
|
+
<ul>
|
|
418
|
+
|
|
419
|
+
<li>
|
|
420
|
+
<span class='object_link'><a href="Yamlint/Models.html" title="Yamlint::Models (module)">Models</a></span>
|
|
421
|
+
|
|
422
|
+
<small>(Yamlint)</small>
|
|
423
|
+
|
|
424
|
+
</li>
|
|
425
|
+
|
|
426
|
+
</ul>
|
|
427
|
+
</ul>
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
<ul id="alpha_N" class="alpha">
|
|
431
|
+
<li class="letter">N</li>
|
|
432
|
+
<ul>
|
|
433
|
+
|
|
434
|
+
<li>
|
|
435
|
+
<span class='object_link'><a href="Yamlint/Rules/NewLineAtEndOfFile.html" title="Yamlint::Rules::NewLineAtEndOfFile (class)">NewLineAtEndOfFile</a></span>
|
|
436
|
+
|
|
437
|
+
<small>(Yamlint::Rules)</small>
|
|
438
|
+
|
|
439
|
+
</li>
|
|
440
|
+
|
|
441
|
+
<li>
|
|
442
|
+
<span class='object_link'><a href="Yamlint/Rules/NewLines.html" title="Yamlint::Rules::NewLines (class)">NewLines</a></span>
|
|
443
|
+
|
|
444
|
+
<small>(Yamlint::Rules)</small>
|
|
445
|
+
|
|
446
|
+
</li>
|
|
447
|
+
|
|
448
|
+
</ul>
|
|
449
|
+
</ul>
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
<ul id="alpha_O" class="alpha">
|
|
453
|
+
<li class="letter">O</li>
|
|
454
|
+
<ul>
|
|
455
|
+
|
|
456
|
+
<li>
|
|
457
|
+
<span class='object_link'><a href="Yamlint/Rules/OctalValues.html" title="Yamlint::Rules::OctalValues (class)">OctalValues</a></span>
|
|
458
|
+
|
|
459
|
+
<small>(Yamlint::Rules)</small>
|
|
460
|
+
|
|
461
|
+
</li>
|
|
462
|
+
|
|
463
|
+
<li>
|
|
464
|
+
<span class='object_link'><a href="Yamlint/Output.html" title="Yamlint::Output (module)">Output</a></span>
|
|
465
|
+
|
|
466
|
+
<small>(Yamlint)</small>
|
|
467
|
+
|
|
468
|
+
</li>
|
|
469
|
+
|
|
470
|
+
</ul>
|
|
471
|
+
</ul>
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
<ul id="alpha_P" class="alpha">
|
|
475
|
+
<li class="letter">P</li>
|
|
476
|
+
<ul>
|
|
477
|
+
|
|
478
|
+
<li>
|
|
479
|
+
<span class='object_link'><a href="Yamlint/Output/Parsable.html" title="Yamlint::Output::Parsable (class)">Parsable</a></span>
|
|
480
|
+
|
|
481
|
+
<small>(Yamlint::Output)</small>
|
|
482
|
+
|
|
483
|
+
</li>
|
|
484
|
+
|
|
485
|
+
<li>
|
|
486
|
+
<span class='object_link'><a href="Yamlint/Parser.html" title="Yamlint::Parser (module)">Parser</a></span>
|
|
487
|
+
|
|
488
|
+
<small>(Yamlint)</small>
|
|
489
|
+
|
|
490
|
+
</li>
|
|
491
|
+
|
|
492
|
+
<li>
|
|
493
|
+
<span class='object_link'><a href="Yamlint/Presets.html" title="Yamlint::Presets (module)">Presets</a></span>
|
|
494
|
+
|
|
495
|
+
<small>(Yamlint)</small>
|
|
496
|
+
|
|
497
|
+
</li>
|
|
498
|
+
|
|
499
|
+
<li>
|
|
500
|
+
<span class='object_link'><a href="Yamlint/Models/Problem.html" title="Yamlint::Models::Problem (class)">Problem</a></span>
|
|
501
|
+
|
|
502
|
+
<small>(Yamlint::Models)</small>
|
|
503
|
+
|
|
504
|
+
</li>
|
|
505
|
+
|
|
506
|
+
</ul>
|
|
507
|
+
</ul>
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
</td><td valign='top' width="33%">
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
<ul id="alpha_Q" class="alpha">
|
|
514
|
+
<li class="letter">Q</li>
|
|
515
|
+
<ul>
|
|
516
|
+
|
|
517
|
+
<li>
|
|
518
|
+
<span class='object_link'><a href="Yamlint/Rules/QuotedStrings.html" title="Yamlint::Rules::QuotedStrings (class)">QuotedStrings</a></span>
|
|
519
|
+
|
|
520
|
+
<small>(Yamlint::Rules)</small>
|
|
521
|
+
|
|
522
|
+
</li>
|
|
523
|
+
|
|
524
|
+
</ul>
|
|
525
|
+
</ul>
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
<ul id="alpha_R" class="alpha">
|
|
529
|
+
<li class="letter">R</li>
|
|
530
|
+
<ul>
|
|
531
|
+
|
|
532
|
+
<li>
|
|
533
|
+
<span class='object_link'><a href="Yamlint/Rules/Registry.html" title="Yamlint::Rules::Registry (class)">Registry</a></span>
|
|
534
|
+
|
|
535
|
+
<small>(Yamlint::Rules)</small>
|
|
536
|
+
|
|
537
|
+
</li>
|
|
538
|
+
|
|
539
|
+
<li>
|
|
540
|
+
<span class='object_link'><a href="Yamlint/Rules.html" title="Yamlint::Rules (module)">Rules</a></span>
|
|
541
|
+
|
|
542
|
+
<small>(Yamlint)</small>
|
|
543
|
+
|
|
544
|
+
</li>
|
|
545
|
+
|
|
546
|
+
<li>
|
|
547
|
+
<span class='object_link'><a href="Yamlint/Runner.html" title="Yamlint::Runner (class)">Runner</a></span>
|
|
548
|
+
|
|
549
|
+
<small>(Yamlint)</small>
|
|
550
|
+
|
|
551
|
+
</li>
|
|
552
|
+
|
|
553
|
+
</ul>
|
|
554
|
+
</ul>
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
<ul id="alpha_S" class="alpha">
|
|
558
|
+
<li class="letter">S</li>
|
|
559
|
+
<ul>
|
|
560
|
+
|
|
561
|
+
<li>
|
|
562
|
+
<span class='object_link'><a href="Yamlint/Output/Standard.html" title="Yamlint::Output::Standard (class)">Standard</a></span>
|
|
563
|
+
|
|
564
|
+
<small>(Yamlint::Output)</small>
|
|
565
|
+
|
|
566
|
+
</li>
|
|
567
|
+
|
|
568
|
+
</ul>
|
|
569
|
+
</ul>
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
<ul id="alpha_T" class="alpha">
|
|
573
|
+
<li class="letter">T</li>
|
|
574
|
+
<ul>
|
|
575
|
+
|
|
576
|
+
<li>
|
|
577
|
+
<span class='object_link'><a href="Yamlint/Models/Token.html" title="Yamlint::Models::Token (class)">Token</a></span>
|
|
578
|
+
|
|
579
|
+
<small>(Yamlint::Models)</small>
|
|
580
|
+
|
|
581
|
+
</li>
|
|
582
|
+
|
|
583
|
+
<li>
|
|
584
|
+
<span class='object_link'><a href="Yamlint/Parser/TokenParser.html" title="Yamlint::Parser::TokenParser (class)">TokenParser</a></span>
|
|
585
|
+
|
|
586
|
+
<small>(Yamlint::Parser)</small>
|
|
587
|
+
|
|
588
|
+
</li>
|
|
589
|
+
|
|
590
|
+
<li>
|
|
591
|
+
<span class='object_link'><a href="Yamlint/Rules/TokenRule.html" title="Yamlint::Rules::TokenRule (class)">TokenRule</a></span>
|
|
592
|
+
|
|
593
|
+
<small>(Yamlint::Rules)</small>
|
|
594
|
+
|
|
595
|
+
</li>
|
|
596
|
+
|
|
597
|
+
<li>
|
|
598
|
+
<span class='object_link'><a href="Yamlint/Rules/TrailingSpaces.html" title="Yamlint::Rules::TrailingSpaces (class)">TrailingSpaces</a></span>
|
|
599
|
+
|
|
600
|
+
<small>(Yamlint::Rules)</small>
|
|
601
|
+
|
|
602
|
+
</li>
|
|
603
|
+
|
|
604
|
+
<li>
|
|
605
|
+
<span class='object_link'><a href="Yamlint/Rules/Truthy.html" title="Yamlint::Rules::Truthy (class)">Truthy</a></span>
|
|
606
|
+
|
|
607
|
+
<small>(Yamlint::Rules)</small>
|
|
608
|
+
|
|
609
|
+
</li>
|
|
610
|
+
|
|
611
|
+
</ul>
|
|
612
|
+
</ul>
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
<ul id="alpha_Y" class="alpha">
|
|
616
|
+
<li class="letter">Y</li>
|
|
617
|
+
<ul>
|
|
618
|
+
|
|
619
|
+
<li>
|
|
620
|
+
<span class='object_link'><a href="Yamlint.html" title="Yamlint (module)">Yamlint</a></span>
|
|
621
|
+
|
|
622
|
+
</li>
|
|
623
|
+
|
|
624
|
+
</ul>
|
|
625
|
+
</ul>
|
|
626
|
+
|
|
627
|
+
</td>
|
|
628
|
+
</tr>
|
|
629
|
+
</table>
|
|
630
|
+
|
|
631
|
+
</div>
|
|
632
|
+
|
|
633
|
+
</div>
|
|
634
|
+
|
|
635
|
+
<div id="footer">
|
|
636
|
+
Generated on Sun Jan 25 08:00:08 2026 by
|
|
637
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
638
|
+
0.9.38 (ruby-4.0.0).
|
|
639
|
+
</div>
|
|
640
|
+
|
|
641
|
+
</div>
|
|
642
|
+
</body>
|
|
643
|
+
</html>
|