@@ -22,16 +22,16 @@ import (
2222// truth — both defaultLinter() and allRules() derive from it.
2323func builtinRules () []linter.Rule {
2424 return []linter.Rule {
25- whitespace .NewTrailingWhitespaceRule (), // L001
26- whitespace .NewMixedIndentationRule (), // L002
27- whitespace .NewConsecutiveBlankLinesRule (2 ), // L003
28- whitespace .NewIndentationDepthRule (10 , 4 ), // L004
29- whitespace .NewLongLinesRule (120 ), // L005
30- style .NewColumnAlignmentRule (), // L006
31- keywords .NewKeywordCaseRule (keywords .CaseUpper ), // L007
25+ whitespace .NewTrailingWhitespaceRule (), // L001
26+ whitespace .NewMixedIndentationRule (), // L002
27+ whitespace .NewConsecutiveBlankLinesRule (2 ), // L003
28+ whitespace .NewIndentationDepthRule (10 , 4 ), // L004
29+ whitespace .NewLongLinesRule (120 ), // L005
30+ style .NewColumnAlignmentRule (), // L006
31+ keywords .NewKeywordCaseRule (keywords .CaseUpper ), // L007
3232 style .NewCommaPlacementRule (style .CommaTrailing ), // L008
33- style .NewAliasingConsistencyRule (true ), // L009
34- whitespace .NewRedundantWhitespaceRule (), // L010
33+ style .NewAliasingConsistencyRule (true ), // L009
34+ whitespace .NewRedundantWhitespaceRule (), // L010
3535 }
3636}
3737
0 commit comments