class
   Ameba::Rule::Style::PercentLiteralDelimiters
   
  
  Overview
A rule that enforces the consistent usage of %-literal delimiters.
Specifying DefaultDelimiters option will set all preferred delimiters at once. You
can continue to specify individual preferred delimiters via PreferredDelimiters
setting to override the default. In both cases the delimiters should be specified
as a string of two characters, or nil to ignore a particular %-literal / default.
Setting IgnoreLiteralsContainingDelimiters to true will ignore %-literals that
contain one or both delimiters.
YAML configuration example:
Style/PercentLiteralDelimiters:
  Enabled: true
  DefaultDelimiters: '()'
  PreferredDelimiters:
    '%w': '[]'
    '%i': '[]'
    '%r': '{}'
  IgnoreLiteralsContainingDelimiters: falseIncluded Modules
- YAML::Serializable
- YAML::Serializable::Strict
Defined in:
ameba/rule/style/percent_literal_delimiters.crConstant Summary
- 
        MSG = "`%s`-literals should be delimited by `%s` and `%s`"
Constructors
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
- 
        .new(config = nil)
        
          A rule that enforces the consistent usage of %-literal delimiters.
- .new(*, __context_for_yaml_serializable ctx : YAML::ParseContext, __node_for_yaml_serializable node : YAML::Nodes::Node)
Class Method Summary
- 
        .parsed_doc : String | Nil
        
          Returns documentation for this rule, if there is any. 
Instance Method Summary
- #default_delimiters : Union(String, Nil)
- #default_delimiters=(default_delimiters : Union(String, Nil))
- #description : String
- #description=(description : String)
- #enabled=(enabled : Bool)
- #enabled? : Bool
- #excluded : Array(String) | Nil
- #excluded=(excluded : Array(String) | Nil)
- #ignore_literals_containing_delimiters=(ignore_literals_containing_delimiters : Bool)
- #ignore_literals_containing_delimiters? : Bool
- #preferred_delimiters : Hash(String, String?)
- #preferred_delimiters=(preferred_delimiters : Hash(String, Nil | String))
- #severity : Ameba::Severity
- #severity=(severity : Ameba::Severity)
- #since_version : SemanticVersion | Nil
- #since_version=(since_version : String)
- #test(source)
Instance methods inherited from class Ameba::Rule::Base
  
  
    
      ==(other)
    ==, 
    
  
    
      catch(source : Source)
    catch, 
    
  
    
      excluded?(source)
    excluded?, 
    
  
    
      group
    group, 
    
  
    
      hash(hasher)
    hash, 
    
  
    
      name
    name, 
    
  
    
      special?
    special?, 
    
  
    
      test(source : Source, node : Crystal::ASTNode, *opts)test(source : Source) test
Class methods inherited from class Ameba::Rule::Base
  
  
    
      default_severity : Ameba::Severity
    default_severity
    
  
      
  Macros inherited from class Ameba::Rule::Base
  
  
    
      issue_for(*args, **kwargs, &block)
    issue_for
    
  
    
      
      
      
      
  Macros inherited from module Ameba::Config::RuleConfig
  
  
    
      properties(&block)
    properties
    
  
    
      
      
      
      
    
      
      
      
      
    
  Constructor Detail
A rule that enforces the consistent usage of %-literal delimiters.
Specifying DefaultDelimiters option will set all preferred delimiters at once. You
can continue to specify individual preferred delimiters via PreferredDelimiters
setting to override the default. In both cases the delimiters should be specified
as a string of two characters, or nil to ignore a particular %-literal / default.
Setting IgnoreLiteralsContainingDelimiters to true will ignore %-literals that
contain one or both delimiters.
YAML configuration example:
Style/PercentLiteralDelimiters:
  Enabled: true
  DefaultDelimiters: '()'
  PreferredDelimiters:
    '%w': '[]'
    '%i': '[]'
    '%r': '{}'
  IgnoreLiteralsContainingDelimiters: falseClass Method Detail
Returns documentation for this rule, if there is any.
module Ameba
  # This is a test rule.
  # Does nothing.
  class MyRule < Ameba::Rule::Base
    def test(source)
    end
  end
end
MyRule.parsed_doc # => "This is a test rule.\nDoes nothing."