diff options
author | James Moger <james.moger@gitblit.com> | 2013-03-27 12:46:05 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2013-03-27 17:22:08 -0400 |
commit | f6b200be4c8b90c26886c6cdd5809abac8c4ac15 (patch) | |
tree | a948dbcf6f24bf884ad95a8d6830b4ec4e1706cf /src/main/config | |
parent | b79ade104858ce6714a7329b7629b331564a2ea5 (diff) | |
download | gitblit-f6b200be4c8b90c26886c6cdd5809abac8c4ac15.tar.gz gitblit-f6b200be4c8b90c26886c6cdd5809abac8c4ac15.zip |
Reorganized to Apache Standard Directory Layout & integrated Moxie
This is a massive commit which reorganizes the entire project structure
(although it is still monolithic), removes the Build classes, and
switches to Moxie, a smarter Ant build tookit based on the original
Gitblit Build classes.
The Ant build script will likely require additional fine-tuning, but
this is big step forward.
Diffstat (limited to 'src/main/config')
-rw-r--r-- | src/main/config/checkstyle.xml | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/src/main/config/checkstyle.xml b/src/main/config/checkstyle.xml new file mode 100644 index 00000000..ee45e7ef --- /dev/null +++ b/src/main/config/checkstyle.xml @@ -0,0 +1,108 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN" "http://www.puppycrawl.com/dtds/configuration_1_3.dtd"> + +<!-- + This configuration file was written by the eclipse-cs plugin + configuration editor +--> +<!-- + Checkstyle-Configuration: gitblit Description: none +--> +<module name="Checker"> + <property name="severity" value="warning" /> + <module name="TreeWalker"> + <property name="tabWidth" value="4" /> + <module name="ConstantName" /> + <module name="LocalFinalVariableName" /> + <module name="LocalVariableName" /> + <module name="MemberName" /> + <module name="MethodName" /> + <module name="PackageName" /> + <module name="ParameterName" /> + <module name="StaticVariableName" /> + <module name="TypeName" /> + <module name="AvoidStarImport" /> + <module name="IllegalImport" /> + <module name="RedundantImport" /> + <module name="UnusedImports" /> + <module name="EmptyForIteratorPad" /> + <module name="MethodParamPad" /> + <module name="NoWhitespaceAfter"> + <property name="tokens" + value="BNOT,DEC,DOT,INC,LNOT,UNARY_MINUS,UNARY_PLUS" /> + </module> + <module name="NoWhitespaceBefore" /> + <module name="OperatorWrap"> + <property name="severity" value="ignore" /> + <property name="tokens" + value="BAND,BOR,BSR,BXOR,COLON,DIV,EQUAL,GE,GT,LAND,LE,LITERAL_INSTANCEOF,LT,MINUS,MOD,NOT_EQUAL,SL,SR,STAR" /> + <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity" + value="inherit" /> + </module> + <module name="ParenPad" /> + <module name="WhitespaceAfter" /> + <module name="WhitespaceAround"> + <property name="tokens" + value="ASSIGN,BAND,BAND_ASSIGN,BOR,BOR_ASSIGN,BSR,BSR_ASSIGN,BXOR,BXOR_ASSIGN,DIV_ASSIGN,EQUAL,GE,GT,LAND,LE,LITERAL_ASSERT,LITERAL_CATCH,LITERAL_DO,LITERAL_ELSE,LITERAL_FINALLY,LITERAL_FOR,LITERAL_IF,LITERAL_RETURN,LITERAL_SYNCHRONIZED,LITERAL_TRY,LITERAL_WHILE,LOR,LT,MINUS,MINUS_ASSIGN,MOD,MOD_ASSIGN,NOT_EQUAL,PLUS_ASSIGN,SL,SLIST,SL_ASSIGN,SR,SR_ASSIGN,STAR,STAR_ASSIGN,LITERAL_ASSERT,TYPE_EXTENSION_AND,WILDCARD_TYPE" /> + </module> + <module name="ModifierOrder" /> + <module name="RedundantModifier" /> + <module name="LeftCurly"> + <property name="tokens" + value="CTOR_DEF,INTERFACE_DEF,LITERAL_CATCH,LITERAL_DO,LITERAL_ELSE,LITERAL_FINALLY,LITERAL_FOR,LITERAL_IF,LITERAL_SWITCH,LITERAL_SYNCHRONIZED,LITERAL_TRY,LITERAL_WHILE,METHOD_DEF" /> + </module> + <module name="NeedBraces" /> + <module name="RightCurly" /> + <module name="EmptyStatement" /> + <module name="EqualsHashCode" /> + <module name="IllegalInstantiation" /> + <module name="RedundantThrows"> + <property name="allowUnchecked" value="true" /> + <property name="allowSubclasses" value="true" /> + <property name="logLoadErrors" value="true" /> + <property name="suppressLoadErrors" value="true" /> + </module> + <module name="SimplifyBooleanExpression" /> + <module name="SimplifyBooleanReturn" /> + <module name="InterfaceIsType" /> + <module name="ArrayTypeStyle" /> + <module name="GenericIllegalRegexp"> + <property name="severity" value="ignore" /> + <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity" + value="inherit" /> + </module> + <module name="TodoComment"> + <property name="severity" value="ignore" /> + <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity" + value="inherit" /> + </module> + <module name="UpperEll" /> + <module name="JavadocType" /> + <module name="EmptyForInitializerPad" /> + <module name="CovariantEquals" /> + <module name="DefaultComesLast" /> + <module name="DeclarationOrder" /> + <module name="ExplicitInitialization" /> + <module name="FallThrough" /> + <module name="IllegalThrows" /> + <module name="SuperClone" /> + <module name="UnnecessaryParentheses" /> + <module name="TrailingComment" /> + <module name="PackageHtml"> + <property name="severity" value="ignore" /> + <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity" + value="inherit" /> + </module> + </module> + <module name="FileTabCharacter"> + <property name="severity" value="ignore" /> + <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity" + value="inherit" /> + </module> + <module name="NewlineAtEndOfFile"> + <property name="severity" value="ignore" /> + <metadata name="net.sf.eclipsecs.core.lastEnabledSeverity" + value="inherit" /> + </module> + <module name="Translation" /> +</module> |