class Ameba::Rule::Layout::LineLength

Overview

A rule that disallows lines longer than #max_length number of symbols.

YAML configuration example:

Layout/LineLength:
  Enabled: true
  MaxLength: 100

Included Modules

Defined in:

ameba/rule/layout/line_length.cr

Constant Summary

MSG = "Line too long"

Constructors

Instance Method Summary

Instance methods inherited from class Ameba::Rule::Base

==(other) ==, catch(source : Source) catch, excluded?(source) excluded?, group group, hash hash, name name, special? special?, test(source : Source, node : Crystal::ASTNode, *opts)
test(source : Source)
test

Class methods inherited from class Ameba::Rule::Base

parsed_doc parsed_doc

Constructor Detail

def self.new(ctx : YAML::ParseContext, node : YAML::Nodes::Node) #

def self.new(config = nil) #

A rule that disallows lines longer than #max_length number of symbols.

YAML configuration example:

Layout/LineLength:
  Enabled: true
  MaxLength: 100

[View source]

Instance Method Detail

def description : String #

def description=(description : String) #

def enabled : Bool #

def enabled=(enabled : Bool) #

def excluded : Array(String)? #

def excluded=(excluded : Array(String)?) #

def max_length : Int32 #

def max_length=(max_length : Int32) #

def severity : Ameba::Severity #

def severity=(severity : Ameba::Severity) #

def test(source) #

[View source]