Module: Yamlint::Rules
- Defined in:
- lib/yamlint/rules.rb,
lib/yamlint/rules/base.rb,
lib/yamlint/rules/braces.rb,
lib/yamlint/rules/colons.rb,
lib/yamlint/rules/commas.rb,
lib/yamlint/rules/truthy.rb,
lib/yamlint/rules/anchors.rb,
lib/yamlint/rules/hyphens.rb,
lib/yamlint/rules/brackets.rb,
lib/yamlint/rules/comments.rb,
lib/yamlint/rules/registry.rb,
lib/yamlint/rules/new_lines.rb,
lib/yamlint/rules/empty_lines.rb,
lib/yamlint/rules/indentation.rb,
lib/yamlint/rules/line_length.rb,
lib/yamlint/rules/document_end.rb,
lib/yamlint/rules/empty_values.rb,
lib/yamlint/rules/float_values.rb,
lib/yamlint/rules/key_ordering.rb,
lib/yamlint/rules/octal_values.rb,
lib/yamlint/rules/document_start.rb,
lib/yamlint/rules/key_duplicates.rb,
lib/yamlint/rules/quoted_strings.rb,
lib/yamlint/rules/trailing_spaces.rb,
lib/yamlint/rules/comments_indentation.rb,
lib/yamlint/rules/new_line_at_end_of_file.rb
Defined Under Namespace
Classes: Anchors, Base, Braces, Brackets, Colons, Commas, CommentRule, Comments, CommentsIndentation, DocumentEnd, DocumentStart, EmptyLines, EmptyValues, FloatValues, Hyphens, Indentation, KeyDuplicates, KeyOrdering, LineLength, LineRule, NewLineAtEndOfFile, NewLines, OctalValues, QuotedStrings, Registry, TokenRule, TrailingSpaces, Truthy
Class Method Summary collapse
Class Method Details
.load_all ⇒ Object
35 36 37 38 39 |
# File 'lib/yamlint/rules.rb', line 35 def self.load_all constants(false).each do |const_name| const_get(const_name) end end |