-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
➕ add static code analyzer PMD for preventing programming flaws
- Loading branch information
1 parent
429d36d
commit eaf6672
Showing
2 changed files
with
231 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,204 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ruleset xmlns="http://pmd.sourceforge.net/ruleset/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Default ruleset used by the CodeClimate Engine for Salesforce.com Apex" xsi:schemaLocation="http://pmd.sourceforge.net/ruleset/2.0.0 https://pmd.sourceforge.io/ruleset_2_0_0.xsd"> | ||
<description>Default ruleset used by the Code Climate Engine for Salesforce.com Apex</description> | ||
|
||
<rule ref="category/java/bestpractices.xml/AbstractClassWithoutAbstractMethod"/> | ||
<rule ref="category/java/bestpractices.xml/ArrayIsStoredDirectly"/> | ||
<rule ref="category/java/bestpractices.xml/AvoidPrintStackTrace"/> | ||
<rule ref="category/java/bestpractices.xml/AvoidReassigningParameters"/> | ||
<rule ref="category/java/bestpractices.xml/AvoidStringBufferField"/> | ||
<rule ref="category/java/bestpractices.xml/ConstantsInInterface"/> | ||
<rule ref="category/java/bestpractices.xml/DefaultLabelNotLastInSwitchStmt"/> | ||
<rule ref="category/java/bestpractices.xml/ForLoopCanBeForeach"/> | ||
|
||
<rule ref="category/java/bestpractices.xml/JUnit4SuitesShouldUseSuiteAnnotation"/> | ||
<rule ref="category/java/bestpractices.xml/JUnit4TestShouldUseAfterAnnotation"/> | ||
<rule ref="category/java/bestpractices.xml/JUnit4TestShouldUseBeforeAnnotation"/> | ||
<rule ref="category/java/bestpractices.xml/JUnit4TestShouldUseTestAnnotation"/> | ||
<rule ref="category/java/bestpractices.xml/JUnitAssertionsShouldIncludeMessage"/> | ||
<rule ref="category/java/bestpractices.xml/JUnitUseExpected"/> | ||
<rule ref="category/java/bestpractices.xml/UseAssertEqualsInsteadOfAssertTrue"/> | ||
<rule ref="category/java/bestpractices.xml/UseAssertNullInsteadOfAssertTrue"/> | ||
<rule ref="category/java/bestpractices.xml/UseAssertSameInsteadOfAssertTrue"/> | ||
<rule ref="category/java/bestpractices.xml/UseAssertTrueInsteadOfAssertEquals"/> | ||
|
||
<rule ref="category/java/bestpractices.xml/LooseCoupling"/> | ||
<rule ref="category/java/bestpractices.xml/MethodReturnsInternalArray"/> | ||
<rule ref="category/java/bestpractices.xml/MissingOverride"/> | ||
<rule ref="category/java/bestpractices.xml/OneDeclarationPerLine"/> | ||
|
||
<rule ref="category/java/bestpractices.xml/PositionLiteralsFirstInCaseInsensitiveComparisons"/> | ||
<rule ref="category/java/bestpractices.xml/PositionLiteralsFirstInComparisons"/> | ||
<rule ref="category/java/bestpractices.xml/PreserveStackTrace"/> | ||
<rule ref="category/java/bestpractices.xml/ReplaceEnumerationWithIterator"/> | ||
<rule ref="category/java/bestpractices.xml/ReplaceHashtableWithMap"/> | ||
<rule ref="category/java/bestpractices.xml/ReplaceVectorWithList"/> | ||
<rule ref="category/java/bestpractices.xml/SwitchStmtsShouldHaveDefault"/> | ||
<rule ref="category/java/bestpractices.xml/SystemPrintln"/> | ||
<rule ref="category/java/bestpractices.xml/UnusedFormalParameter"/> | ||
<rule ref="category/java/bestpractices.xml/UnusedImports"/> | ||
<rule ref="category/java/bestpractices.xml/UnusedPrivateField"/> | ||
<rule ref="category/java/bestpractices.xml/UnusedPrivateMethod"/> | ||
<rule ref="category/java/bestpractices.xml/UseCollectionIsEmpty"/> | ||
<rule ref="category/java/bestpractices.xml/UseVarargs"/> | ||
<!-- /bestpractices --> | ||
|
||
<!-- codestyle --> | ||
<rule ref="category/java/codestyle.xml/AvoidDollarSigns"/> | ||
<rule ref="category/java/codestyle.xml/AvoidProtectedFieldInFinalClass"/> | ||
<rule ref="category/java/codestyle.xml/AvoidProtectedMethodInFinalClassNotExtending"/> | ||
<rule ref="category/java/codestyle.xml/AvoidUsingNativeCode"/> | ||
<rule ref="category/java/codestyle.xml/BooleanGetMethodName"/> | ||
<rule ref="category/java/codestyle.xml/ConfusingTernary"/> | ||
<rule ref="category/java/codestyle.xml/ControlStatementBraces"/> | ||
<rule ref="category/java/codestyle.xml/DontImportJavaLang"/> | ||
<rule ref="category/java/codestyle.xml/DuplicateImports"/> | ||
<rule ref="category/java/codestyle.xml/EmptyMethodInAbstractClassShouldBeAbstract"/> | ||
<rule ref="category/java/codestyle.xml/ExtendsObject"/> | ||
<rule ref="category/java/codestyle.xml/FieldDeclarationsShouldBeAtStartOfClass"/> | ||
<rule ref="category/java/codestyle.xml/ForLoopShouldBeWhileLoop"/> | ||
<rule ref="category/java/codestyle.xml/GenericsNaming"/> | ||
<rule ref="category/java/codestyle.xml/IdenticalCatchBranches"/> | ||
<rule ref="category/java/codestyle.xml/MethodNamingConventions"/> | ||
<rule ref="category/java/codestyle.xml/NoPackage"/> | ||
<rule ref="category/java/codestyle.xml/PackageCase"/> | ||
<rule ref="category/java/codestyle.xml/PrematureDeclaration"/> | ||
<rule ref="category/java/codestyle.xml/TooManyStaticImports"> | ||
<properties> | ||
<property name="maximumStaticImports" value="5"/> | ||
</properties> | ||
</rule> | ||
<rule ref="category/java/codestyle.xml/UnnecessaryAnnotationValueElement"/> | ||
<rule ref="category/java/codestyle.xml/UnnecessaryConstructor"/> | ||
<rule ref="category/java/codestyle.xml/UnnecessaryFullyQualifiedName"/> | ||
<rule ref="category/java/codestyle.xml/UnnecessaryLocalBeforeReturn"/> | ||
<rule ref="category/java/codestyle.xml/UnnecessaryModifier"/> | ||
<rule ref="category/java/codestyle.xml/UnnecessaryReturn"/> | ||
<rule ref="category/java/codestyle.xml/UselessParentheses"/> | ||
<rule ref="category/java/codestyle.xml/UselessQualifiedThis"/> | ||
<!-- /codestyle --> | ||
|
||
<!--design--> | ||
<rule ref="category/java/design.xml/AvoidDeeplyNestedIfStmts"/> | ||
<rule ref="category/java/design.xml/AvoidRethrowingException"/> | ||
<rule ref="category/java/design.xml/AvoidThrowingNewInstanceOfSameException"/> | ||
<rule ref="category/java/design.xml/AvoidThrowingNullPointerException"/> | ||
<rule ref="category/java/design.xml/ClassWithOnlyPrivateConstructorsShouldBeFinal"/> | ||
<rule ref="category/java/design.xml/CollapsibleIfStatements"/> | ||
<rule ref="category/java/design.xml/DoNotExtendJavaLangError"/> | ||
<rule ref="category/java/design.xml/ExceptionAsFlowControl"/> | ||
<rule ref="category/java/design.xml/ExcessiveClassLength"/> | ||
<rule ref="category/java/design.xml/ExcessiveMethodLength"/> | ||
<rule ref="category/java/design.xml/ExcessiveParameterList"/> | ||
<rule ref="category/java/design.xml/FinalFieldCouldBeStatic"/> | ||
<rule ref="category/java/design.xml/GodClass"/> | ||
<rule ref="category/java/design.xml/ImmutableField"/> | ||
<rule ref="category/java/design.xml/LogicInversion"/> | ||
<rule ref="category/java/design.xml/SimplifiedTernary"/> | ||
<rule ref="category/java/design.xml/SimplifyBooleanAssertion"/> | ||
<rule ref="category/java/design.xml/SimplifyBooleanExpressions"/> | ||
<rule ref="category/java/design.xml/SimplifyBooleanReturns"/> | ||
<rule ref="category/java/design.xml/SimplifyConditional"/> | ||
<rule ref="category/java/design.xml/SingularField"/> | ||
<rule ref="category/java/design.xml/SwitchDensity"/> | ||
<rule ref="category/java/design.xml/UselessOverridingMethod"/> | ||
<rule ref="category/java/design.xml/UseUtilityClass"/> | ||
<!-- /design --> | ||
|
||
<!-- documentation --> | ||
<rule ref="category/java/documentation.xml/CommentContent"/> | ||
<rule ref="category/java/documentation.xml/CommentSize"/> | ||
<rule ref="category/java/documentation.xml/UncommentedEmptyMethodBody"/> | ||
<!-- /documentation --> | ||
|
||
<!-- errorprone --> | ||
<rule ref="category/java/errorprone.xml/AssignmentInOperand"> | ||
<properties> | ||
<property name="allowIncrementDecrement" value="true"/> | ||
</properties> | ||
</rule> | ||
<rule ref="category/java/errorprone.xml/AssignmentToNonFinalStatic"/> | ||
<rule ref="category/java/errorprone.xml/AvoidAssertAsIdentifier"/> | ||
<rule ref="category/java/errorprone.xml/AvoidBranchingStatementAsLastInLoop"/> | ||
<rule ref="category/java/errorprone.xml/AvoidCallingFinalize"/> | ||
<rule ref="category/java/errorprone.xml/AvoidCatchingNPE"/> | ||
<rule ref="category/java/errorprone.xml/AvoidCatchingThrowable"/> | ||
<rule ref="category/java/errorprone.xml/AvoidDecimalLiteralsInBigDecimalConstructor"/> | ||
<rule ref="category/java/errorprone.xml/AvoidEnumAsIdentifier"/> | ||
<rule ref="category/java/errorprone.xml/AvoidFieldNameMatchingMethodName"/> | ||
<rule ref="category/java/errorprone.xml/AvoidInstanceofChecksInCatchClause"/> | ||
<rule ref="category/java/errorprone.xml/AvoidLosingExceptionInformation"/> | ||
<rule ref="category/java/errorprone.xml/AvoidMultipleUnaryOperators"/> | ||
<rule ref="category/java/errorprone.xml/AvoidUsingOctalValues"/> | ||
<rule ref="category/java/errorprone.xml/BadComparison"/> | ||
<rule ref="category/java/errorprone.xml/BrokenNullCheck"/> | ||
<rule ref="category/java/errorprone.xml/ClassCastExceptionWithToArray"/> | ||
<rule ref="category/java/errorprone.xml/CloseResource"/> | ||
<rule ref="category/java/errorprone.xml/CompareObjectsWithEquals"/> | ||
<rule ref="category/java/errorprone.xml/ConstructorCallsOverridableMethod"/> | ||
<rule ref="category/java/errorprone.xml/DoNotCallGarbageCollectionExplicitly"/> | ||
<rule ref="category/java/errorprone.xml/DoNotCallSystemExit"/> | ||
<rule ref="category/java/errorprone.xml/DoNotExtendJavaLangThrowable"/> | ||
<rule ref="category/java/errorprone.xml/DoNotThrowExceptionInFinally"/> | ||
<rule ref="category/java/errorprone.xml/DontImportSun"/> | ||
<rule ref="category/java/errorprone.xml/DontUseFloatTypeForLoopIndices"/> | ||
<rule ref="category/java/errorprone.xml/EmptyCatchBlock"/> | ||
<rule ref="category/java/errorprone.xml/EmptyFinallyBlock"/> | ||
<rule ref="category/java/errorprone.xml/EmptyIfStmt"/> | ||
<rule ref="category/java/errorprone.xml/EmptyInitializer"/> | ||
<rule ref="category/java/errorprone.xml/EmptyStatementBlock"/> | ||
<rule ref="category/java/errorprone.xml/EmptyStatementNotInLoop"/> | ||
<rule ref="category/java/errorprone.xml/EmptySwitchStatements"/> | ||
<rule ref="category/java/errorprone.xml/EmptySynchronizedBlock"/> | ||
<rule ref="category/java/errorprone.xml/EmptyTryBlock"/> | ||
<rule ref="category/java/errorprone.xml/EmptyWhileStmt"/> | ||
<rule ref="category/java/errorprone.xml/EqualsNull"/> | ||
<rule ref="category/java/errorprone.xml/IdempotentOperations"/> | ||
<rule ref="category/java/errorprone.xml/ImportFromSamePackage"/> | ||
<rule ref="category/java/errorprone.xml/InstantiationToGetClass"/> | ||
<rule ref="category/java/errorprone.xml/InvalidLogMessageFormat"/> | ||
<rule ref="category/java/errorprone.xml/JumbledIncrementer"/> | ||
<rule ref="category/java/errorprone.xml/JUnitSpelling"/> | ||
<rule ref="category/java/errorprone.xml/JUnitStaticSuite"/> | ||
<rule ref="category/java/errorprone.xml/MethodWithSameNameAsEnclosingClass"/> | ||
<rule ref="category/java/errorprone.xml/MisplacedNullCheck"/> | ||
<rule ref="category/java/errorprone.xml/MissingBreakInSwitch"/> | ||
<rule ref="category/java/errorprone.xml/MissingSerialVersionUID"/> | ||
<rule ref="category/java/errorprone.xml/MissingStaticMethodInNonInstantiatableClass"/> | ||
<rule ref="category/java/errorprone.xml/MoreThanOneLogger"/> | ||
<rule ref="category/java/errorprone.xml/NonCaseLabelInSwitchStatement"/> | ||
<rule ref="category/java/errorprone.xml/NonStaticInitializer"/> | ||
<rule ref="category/java/errorprone.xml/NullAssignment"/> | ||
<rule ref="category/java/errorprone.xml/OverrideBothEqualsAndHashcode"/> | ||
<rule ref="category/java/errorprone.xml/ReturnFromFinallyBlock"/> | ||
<rule ref="category/java/errorprone.xml/StringBufferInstantiationWithChar"/> | ||
<rule ref="category/java/errorprone.xml/SuspiciousEqualsMethodName"/> | ||
<rule ref="category/java/errorprone.xml/SuspiciousHashcodeMethodName"/> | ||
<rule ref="category/java/errorprone.xml/TestClassWithoutTestCases"/> | ||
<rule ref="category/java/errorprone.xml/UnconditionalIfStatement"/> | ||
<rule ref="category/java/errorprone.xml/UnnecessaryBooleanAssertion"/> | ||
<rule ref="category/java/errorprone.xml/UnnecessaryCaseChange"/> | ||
<rule ref="category/java/errorprone.xml/UnnecessaryConversionTemporary"/> | ||
<rule ref="category/java/errorprone.xml/UseEqualsToCompareStrings"/> | ||
<rule ref="category/java/errorprone.xml/UselessOperationOnImmutable"/> | ||
<!-- /errorprone --> | ||
|
||
<!-- performance --> | ||
<rule ref="category/java/performance.xml/AddEmptyString" /> | ||
<rule ref="category/java/performance.xml/AvoidArrayLoops" /> | ||
<rule ref="category/java/performance.xml/AvoidUsingShortType" /> | ||
<rule ref="category/java/performance.xml/BigIntegerInstantiation" /> | ||
<rule ref="category/java/performance.xml/BooleanInstantiation" /> | ||
<rule ref="category/java/performance.xml/IntegerInstantiation" /> | ||
<rule ref="category/java/performance.xml/LongInstantiation" /> | ||
<rule ref="category/java/performance.xml/RedundantFieldInitializer" /> | ||
<rule ref="category/java/performance.xml/StringInstantiation" /> | ||
<rule ref="category/java/performance.xml/StringToString" /> | ||
<rule ref="category/java/performance.xml/TooFewBranchesForASwitchStatement" /> | ||
<rule ref="category/java/performance.xml/UnnecessaryWrapperObjectCreation" /> | ||
<rule ref="category/java/performance.xml/UseArrayListInsteadOfVector" /> | ||
<rule ref="category/java/performance.xml/UseIndexOfChar" /> | ||
<rule ref="category/java/performance.xml/UselessStringValueOf" /> | ||
<rule ref="category/java/performance.xml/UseStringBufferForStringAppends" /> | ||
<!-- /performance --> | ||
</ruleset> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters