Haxe Checkstyle
Introduction
1.
Setup
2.
Checks
2.1.
Block
2.1.1.
EmptyBlock
2.1.2.
LeftCurly
2.1.3.
NeedBraces
2.1.4.
RightCurly
2.2.
Coding
2.2.1.
Trace
2.2.2.
MultipleVariableDeclarations
2.2.3.
DefaultComesLast
2.2.4.
VariableInitialisation
2.2.5.
InnerAssignment
2.2.6.
ReturnCount
2.2.7.
NestedTryDepth
2.2.8.
AvoidInlineConditionals
2.2.9.
SimplifyBooleanExpression
2.2.10.
MagicNumber
2.2.11.
NestedForDepth
2.2.12.
HiddenField
2.2.13.
NestedIfDepth
2.2.14.
SimplifyBooleanReturn
2.2.15.
NullableParameter
2.3.
Comments
2.3.1.
TODOComment
2.4.
Design
2.4.1.
EmptyPackage
2.4.2.
Interface
2.4.3.
UnnecessaryConstructor
2.5.
Imports
2.5.1.
UnusedImports
2.5.2.
AvoidStarImport
2.6.
Literal
2.6.1.
HexadecimalLiteral
2.6.2.
ArrayLiteral
2.6.3.
ERegLiteral
2.6.4.
MultipleStringLiterals
2.7.
Metrics
2.7.1.
CyclomaticComplexity
2.8.
Modifier
2.8.1.
ModifierOrder
2.8.2.
RedundantModifier
2.9.
Naming
2.9.1.
CatchParameterName
2.9.2.
ConstantName
2.9.3.
ListenerName
2.9.4.
LocalVariableName
2.9.5.
MemberName
2.9.6.
MethodName
2.9.7.
ParameterName
2.9.8.
TypeName
2.10.
Size
2.10.1.
FileLength
2.10.2.
LineLength
2.10.3.
MethodCount
2.10.4.
MethodLength
2.10.5.
ParameterNumber
2.11.
Type
2.11.1.
Anonymous
2.11.2.
Dynamic
2.11.3.
Return
2.11.4.
Type
2.12.
Whitespace
2.12.1.
Spacing
2.12.2.
IndentationCharacter
2.12.3.
WhitespaceAfter
2.12.4.
ArrayAccess
2.12.5.
TrailingWhitespace
2.12.6.
EmptyLines
2.12.7.
TabForAligning
2.12.8.
SeparatorWrap
2.12.9.
OperatorWrap
2.12.10.
WhitespaceAround
3.
RegEx Reference
Powered by
GitBook
Haxe Checkstyle
Trace
Checks for trace calls in code.
Configuration
{
"type"
:
"Trace"
,
"props"
: {
"severity"
:
"INFO"
} }