123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317 |
- <?xml version="1.0"?>
- <ruleset name="quickstart"
- xmlns="http://pmd.sourceforge.net/ruleset/2.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://pmd.sourceforge.net/ruleset/2.0.0 https://pmd.sourceforge.io/ruleset_2_0_0.xsd">
- <description>Quickstart configuration of PMD. Includes the rules that are most likely to apply everywhere.</description>
-
-
-
-
-
-
-
-
- <rule ref="category/java/bestpractices.xml/AvoidMessageDigestField"/>
- <rule ref="category/java/bestpractices.xml/AvoidStringBufferField"/>
- <rule ref="category/java/bestpractices.xml/AvoidUsingHardCodedIP"/>
- <rule ref="category/java/bestpractices.xml/CheckResultSet"/>
- <rule ref="category/java/bestpractices.xml/ConstantsInInterface"/>
- <rule ref="category/java/bestpractices.xml/DefaultLabelNotLastInSwitchStmt"/>
- <rule ref="category/java/bestpractices.xml/DoubleBraceInitialization"/>
- <rule ref="category/java/bestpractices.xml/ForLoopCanBeForeach"/>
-
- <rule ref="category/java/bestpractices.xml/GuardLogStatement"/>
-
-
-
-
-
-
-
-
-
- <rule ref="category/java/bestpractices.xml/LiteralsFirstInComparisons" />
- <rule ref="category/java/bestpractices.xml/LooseCoupling"/>
-
- <rule ref="category/java/bestpractices.xml/MissingOverride"/>
- <rule ref="category/java/bestpractices.xml/OneDeclarationPerLine"/>
- <rule ref="category/java/bestpractices.xml/PrimitiveWrapperInstantiation"/>
- <rule ref="category/java/bestpractices.xml/PreserveStackTrace"/>
-
-
-
- <rule ref="category/java/bestpractices.xml/SimplifiableTestAssertion"/>
- <rule ref="category/java/bestpractices.xml/SwitchStmtsShouldHaveDefault"/>
-
-
- <rule ref="category/java/bestpractices.xml/UnusedFormalParameter"/>
- <rule ref="category/java/bestpractices.xml/UnusedLocalVariable"/>
- <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/UseStandardCharsets" />
-
-
-
-
- <rule ref="category/java/codestyle.xml/ClassNamingConventions"/>
-
- <rule ref="category/java/codestyle.xml/FormalParameterNamingConventions"/>
- <rule ref="category/java/codestyle.xml/GenericsNaming"/>
-
- <rule ref="category/java/codestyle.xml/LocalVariableNamingConventions"/>
-
- <rule ref="category/java/codestyle.xml/MethodNamingConventions"/>
- <rule ref="category/java/codestyle.xml/PackageCase"/>
-
-
-
-
-
-
-
-
-
-
- <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/ControlStatementBraces"/>
-
- <rule ref="category/java/codestyle.xml/ExtendsObject"/>
-
- <rule ref="category/java/codestyle.xml/FinalParameterInAbstractMethod"/>
- <rule ref="category/java/codestyle.xml/ForLoopShouldBeWhileLoop"/>
- <rule ref="category/java/codestyle.xml/IdenticalCatchBranches"/>
-
-
- <rule ref="category/java/codestyle.xml/NoPackage"/>
-
-
-
-
- <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/UnnecessaryImport" />
- <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"/>
- <rule ref="category/java/design.xml/AbstractClassWithoutAnyMethod"/>
-
-
-
-
-
-
-
- <rule ref="category/java/design.xml/ClassWithOnlyPrivateConstructorsShouldBeFinal"/>
-
-
-
-
-
- <rule ref="category/java/design.xml/DoNotExtendJavaLangError" />
-
-
-
-
- <rule ref="category/java/design.xml/FinalFieldCouldBeStatic"/>
-
-
-
-
-
-
-
-
- <rule ref="category/java/design.xml/LogicInversion"/>
-
-
-
-
-
-
-
-
-
-
- <rule ref="category/java/design.xml/SimplifiedTernary"/>
-
- <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/UselessOverridingMethod"/>
-
- <rule ref="category/java/design.xml/UseUtilityClass"/>
-
-
-
- <rule ref="category/java/documentation.xml/UncommentedEmptyConstructor"/>
- <rule ref="category/java/documentation.xml/UncommentedEmptyMethodBody"/>
- <rule ref="category/java/errorprone.xml/AssignmentInOperand">
- <properties>
- <property name="allowWhile" value="true"/>
- </properties>
- </rule>
- <rule ref="category/java/errorprone.xml/AssignmentToNonFinalStatic"/>
- <rule ref="category/java/errorprone.xml/AvoidAccessibilityAlteration"/>
-
- <rule ref="category/java/errorprone.xml/AvoidBranchingStatementAsLastInLoop"/>
-
-
- <rule ref="category/java/errorprone.xml/AvoidCatchingThrowable"/>
- <rule ref="category/java/errorprone.xml/AvoidDecimalLiteralsInBigDecimalConstructor"/>
-
-
-
-
- <rule ref="category/java/errorprone.xml/AvoidInstanceofChecksInCatchClause"/>
-
-
- <rule ref="category/java/errorprone.xml/AvoidMultipleUnaryOperators"/>
- <rule ref="category/java/errorprone.xml/AvoidUsingOctalValues"/>
-
- <rule ref="category/java/errorprone.xml/BrokenNullCheck"/>
-
-
- <rule ref="category/java/errorprone.xml/CheckSkipResult"/>
- <rule ref="category/java/errorprone.xml/ClassCastExceptionWithToArray"/>
- <rule ref="category/java/errorprone.xml/CloneMethodMustBePublic"/>
- <rule ref="category/java/errorprone.xml/CloneMethodMustImplementCloneable"/>
- <rule ref="category/java/errorprone.xml/CloneMethodReturnTypeMustMatchClassName"/>
-
- <rule ref="category/java/errorprone.xml/CloseResource"/>
- <rule ref="category/java/errorprone.xml/CompareObjectsWithEquals"/>
- <rule ref="category/java/errorprone.xml/ComparisonWithNaN"/>
-
-
-
- <rule ref="category/java/errorprone.xml/DoNotCallGarbageCollectionExplicitly"/>
-
- <rule ref="category/java/errorprone.xml/DoNotExtendJavaLangThrowable"/>
-
-
-
- <rule ref="category/java/errorprone.xml/DontUseFloatTypeForLoopIndices"/>
- <rule ref="category/java/errorprone.xml/EqualsNull"/>
-
-
-
-
- <rule ref="category/java/errorprone.xml/IdempotentOperations"/>
- <rule ref="category/java/errorprone.xml/ImplicitSwitchFallThrough"/>
- <rule ref="category/java/errorprone.xml/InstantiationToGetClass"/>
-
- <rule ref="category/java/errorprone.xml/JumbledIncrementer"/>
-
-
-
-
- <rule ref="category/java/errorprone.xml/MisplacedNullCheck"/>
-
- <rule ref="category/java/errorprone.xml/MissingStaticMethodInNonInstantiatableClass"/>
-
- <rule ref="category/java/errorprone.xml/NonCaseLabelInSwitchStatement"/>
- <rule ref="category/java/errorprone.xml/NonStaticInitializer"/>
-
- <rule ref="category/java/errorprone.xml/OverrideBothEqualsAndHashcode"/>
- <rule ref="category/java/errorprone.xml/ProperCloneImplementation"/>
- <rule ref="category/java/errorprone.xml/ProperLogger"/>
- <rule ref="category/java/errorprone.xml/ReturnEmptyCollectionRatherThanNull"/>
- <rule ref="category/java/errorprone.xml/ReturnFromFinallyBlock"/>
-
- <rule ref="category/java/errorprone.xml/SingleMethodSingleton"/>
- <rule ref="category/java/errorprone.xml/SingletonClassReturningNewInstance"/>
-
-
- <rule ref="category/java/errorprone.xml/SuspiciousEqualsMethodName"/>
- <rule ref="category/java/errorprone.xml/SuspiciousHashcodeMethodName"/>
- <rule ref="category/java/errorprone.xml/SuspiciousOctalEscape"/>
-
- <rule ref="category/java/errorprone.xml/UnconditionalIfStatement"/>
-
-
- <rule ref="category/java/errorprone.xml/UnnecessaryConversionTemporary"/>
- <rule ref="category/java/errorprone.xml/UnusedNullCheckInEquals"/>
-
- <rule ref="category/java/errorprone.xml/UseEqualsToCompareStrings"/>
- <rule ref="category/java/errorprone.xml/UselessOperationOnImmutable"/>
- <rule ref="category/java/errorprone.xml/UseLocaleWithCaseConversions"/>
-
-
- <rule ref="category/java/codestyle.xml/EmptyControlStatement"/>
- <rule ref="category/java/codestyle.xml/UnnecessarySemicolon"/>
- <rule ref="category/java/errorprone.xml/EmptyCatchBlock"/>
- <rule ref="category/java/errorprone.xml/EmptyFinalizer"/>
-
- <rule ref="category/java/multithreading.xml/AvoidThreadGroup"/>
- <rule ref="category/java/multithreading.xml/AvoidUsingVolatile"/>
-
- <rule ref="category/java/multithreading.xml/DontCallThreadRun"/>
- <rule ref="category/java/multithreading.xml/DoubleCheckedLocking"/>
- <rule ref="category/java/multithreading.xml/NonThreadSafeSingleton"/>
- <rule ref="category/java/multithreading.xml/UnsynchronizedStaticFormatter"/>
-
- <rule ref="category/java/multithreading.xml/UseNotifyAllInsteadOfNotify"/>
-
-
-
-
-
-
- <rule ref="category/java/performance.xml/BigIntegerInstantiation"/>
-
-
-
-
-
- <rule ref="category/java/performance.xml/OptimizableToArrayCall"/>
-
-
-
-
-
-
-
-
-
-
-
-
-
- </ruleset>
|