AllManCheck

Checks for the allman style (braces should be on their own line)

if (param < 0) {
}

should be

if (param < 0)
{
}
class AllManCheck : BaseAnalyzer {
enum string KEY;
enum string MESSAGE;
}

Constructors

this
this(string fileName, const(Token)[] tokens, bool skipTests = false)

Inherited Members

From BaseAnalyzer

visit
void visit(const Unittest unittest_)

Visits a unittest.

fileName
string fileName;

The file name

Meta