.build
.config
.processors
processors.exclude exclude
.console-reports
console-reports.exclude exclude
.output-reports
.comments
comments.excludes excludes
.comments.AbsentOrWrongFileLicense
.comments.CommentOverPrivateFunction
.comments.CommentOverPrivateProperty
.comments.EndOfSentenceFormat
.comments.UndocumentedPublicClass
.comments.UndocumentedPublicFunction
.comments.UndocumentedPublicProperty
.complexity
.complexity.ComplexCondition
.complexity.ComplexInterface
.complexity.ComplexMethod
complexity.ComplexMethod.nestingFunctions nestingFunctions
.complexity.LabeledExpression
complexity.LabeledExpression.ignoredLabels ignoredLabels
.complexity.LargeClass
.complexity.LongMethod
.complexity.LongParameterList
complexity.LongParameterList.ignoreAnnotated ignoreAnnotated
.complexity.MethodOverloading
.complexity.NestedBlockDepth
.complexity.ReplaceSafeCallChainWithRun
.complexity.StringLiteralDuplication
complexity.StringLiteralDuplication.excludes excludes
.complexity.TooManyFunctions
complexity.TooManyFunctions.excludes excludes
.coroutines
.coroutines.GlobalCoroutineUsage
.coroutines.RedundantSuspendModifier
.coroutines.SuspendFunWithFlowReturnType
.empty-blocks
.empty-blocks.EmptyCatchBlock
.empty-blocks.EmptyClassBlock
.empty-blocks.EmptyDefaultConstructor
.empty-blocks.EmptyDoWhileBlock
.empty-blocks.EmptyElseBlock
.empty-blocks.EmptyFinallyBlock
.empty-blocks.EmptyForBlock
.empty-blocks.EmptyFunctionBlock
.empty-blocks.EmptyIfBlock
.empty-blocks.EmptyInitBlock
.empty-blocks.EmptyKtFile
.empty-blocks.EmptySecondaryConstructor
.empty-blocks.EmptyTryBlock
.empty-blocks.EmptyWhenBlock
.empty-blocks.EmptyWhileBlock
.exceptions
.exceptions.ExceptionRaisedInUnexpectedLocation
exceptions.ExceptionRaisedInUnexpectedLocation.methodNames methodNames
.exceptions.InstanceOfCheckForException
exceptions.InstanceOfCheckForException.excludes excludes
.exceptions.NotImplementedDeclaration
.exceptions.PrintStackTrace
.exceptions.RethrowCaughtException
.exceptions.ReturnFromFinally
.exceptions.SwallowedException
exceptions.SwallowedException.ignoredExceptionTypes ignoredExceptionTypes
.exceptions.ThrowingExceptionFromFinally
.exceptions.ThrowingExceptionInMain
.exceptions.ThrowingExceptionsWithoutMessageOrCause
exceptions.ThrowingExceptionsWithoutMessageOrCause.excludes excludes
exceptions.ThrowingExceptionsWithoutMessageOrCause.exceptions exceptions
.exceptions.ThrowingNewInstanceOfSameException
.exceptions.TooGenericExceptionCaught
exceptions.TooGenericExceptionCaught.excludes excludes
exceptions.TooGenericExceptionCaught.exceptionNames exceptionNames
.exceptions.TooGenericExceptionThrown
exceptions.TooGenericExceptionThrown.exceptionNames exceptionNames
.formatting
.formatting.AnnotationOnSeparateLine
.formatting.AnnotationSpacing
.formatting.ArgumentListWrapping
.formatting.ChainWrapping
.formatting.CommentSpacing
.formatting.EnumEntryNameCase
.formatting.Filename
.formatting.FinalNewline
.formatting.ImportOrdering
.formatting.Indentation
.formatting.MaximumLineLength
.formatting.ModifierOrdering
.formatting.MultiLineIfElse
.formatting.NoBlankLineBeforeRbrace
.formatting.NoConsecutiveBlankLines
.formatting.NoEmptyClassBody
.formatting.NoEmptyFirstLineInMethodBlock
.formatting.NoLineBreakAfterElse
.formatting.NoLineBreakBeforeAssignment
.formatting.NoMultipleSpaces
.formatting.NoSemicolons
.formatting.NoTrailingSpaces
.formatting.NoUnitReturn
.formatting.NoUnusedImports
.formatting.NoWildcardImports
.formatting.PackageName
.formatting.ParameterListWrapping
.formatting.SpacingAroundColon
.formatting.SpacingAroundComma
.formatting.SpacingAroundCurly
.formatting.SpacingAroundDot
.formatting.SpacingAroundDoubleColon
.formatting.SpacingAroundKeyword
.formatting.SpacingAroundOperators
.formatting.SpacingAroundParens
.formatting.SpacingAroundRangeOperator
.formatting.SpacingBetweenDeclarationsWithAnnotations
.formatting.SpacingBetweenDeclarationsWithComments
.formatting.StringTemplate
.naming
.naming.ClassNaming
naming.ClassNaming.excludes excludes
.naming.ConstructorParameterNaming
naming.ConstructorParameterNaming.excludes excludes
.naming.EnumNaming
naming.EnumNaming.excludes excludes
.naming.ForbiddenClassName
naming.ForbiddenClassName.excludes excludes
naming.ForbiddenClassName.forbiddenName forbiddenName
.naming.FunctionMaxLength
naming.FunctionMaxLength.excludes excludes
.naming.FunctionMinLength
naming.FunctionMinLength.excludes excludes
.naming.FunctionNaming
naming.FunctionNaming.excludes excludes
naming.FunctionNaming.ignoreAnnotated ignoreAnnotated
.naming.FunctionParameterNaming
naming.FunctionParameterNaming.excludes excludes
.naming.InvalidPackageDeclaration
.naming.MatchingDeclarationName
.naming.MemberNameEqualsClassName
.naming.NonBooleanPropertyPrefixedWithIs
naming.NonBooleanPropertyPrefixedWithIs.excludes excludes
.naming.ObjectPropertyNaming
naming.ObjectPropertyNaming.excludes excludes
.naming.PackageNaming
naming.PackageNaming.excludes excludes
.naming.TopLevelPropertyNaming
naming.TopLevelPropertyNaming.excludes excludes
.naming.VariableMaxLength
naming.VariableMaxLength.excludes excludes
.naming.VariableMinLength
naming.VariableMinLength.excludes excludes
.naming.VariableNaming
naming.VariableNaming.excludes excludes
.performance
.performance.ArrayPrimitive
.performance.ForEachOnRange
performance.ForEachOnRange.excludes excludes
.performance.SpreadOperator
performance.SpreadOperator.excludes excludes
.performance.UnnecessaryTemporaryInstantiation
.potential-bugs
.potential-bugs.Deprecation
.potential-bugs.DuplicateCaseInWhenExpression
.potential-bugs.EqualsAlwaysReturnsTrueOrFalse
.potential-bugs.EqualsWithHashCodeExist
.potential-bugs.ExplicitGarbageCollectionCall
.potential-bugs.HasPlatformType
.potential-bugs.IgnoredReturnValue
potential-bugs.IgnoredReturnValue.returnValueAnnotations returnValueAnnotations
.potential-bugs.ImplicitDefaultLocale
.potential-bugs.ImplicitUnitReturnType
.potential-bugs.InvalidRange
.potential-bugs.IteratorHasNextCallsNextMethod
.potential-bugs.IteratorNotThrowingNoSuchElementException
.potential-bugs.LateinitUsage
potential-bugs.LateinitUsage.excludes excludes
potential-bugs.LateinitUsage.excludeAnnotatedProperties excludeAnnotatedProperties
.potential-bugs.MapGetWithNotNullAssertionOperator
.potential-bugs.MissingWhenCase
.potential-bugs.NullableToStringCall
.potential-bugs.RedundantElseInWhen
.potential-bugs.UnconditionalJumpStatementInLoop
.potential-bugs.UnnecessaryNotNullOperator
.potential-bugs.UnnecessarySafeCall
.potential-bugs.UnreachableCode
.potential-bugs.UnsafeCallOnNullableType
.potential-bugs.UnsafeCast
.potential-bugs.UselessPostfixExpression
.potential-bugs.WrongEqualsTypeParameter
.style
.style.ClassOrdering
.style.CollapsibleIfStatements
.style.DataClassContainsFunctions
.style.DataClassShouldBeImmutable
.style.EqualsNullCall
.style.EqualsOnSignatureLine
.style.ExplicitCollectionElementAccessMethod
.style.ExplicitItLambdaParameter
.style.ExpressionBodySyntax
.style.ForbiddenComment
style.ForbiddenComment.values values
.style.ForbiddenImport
style.ForbiddenImport.imports imports
.style.ForbiddenMethodCall
style.ForbiddenMethodCall.methods methods
.style.ForbiddenPublicDataClass
style.ForbiddenPublicDataClass.ignorePackages ignorePackages
.style.ForbiddenVoid
.style.FunctionOnlyReturningConstant
style.FunctionOnlyReturningConstant.excludeAnnotatedFunction excludeAnnotatedFunction
.style.LibraryCodeMustSpecifyReturnType
.style.LibraryEntitiesShouldNotBePublic
.style.LoopWithTooManyJumpStatements
.style.MagicNumber
style.MagicNumber.excludes excludes
style.MagicNumber.ignoreNumbers ignoreNumbers
.style.MandatoryBracesIfStatements
.style.MandatoryBracesLoops
.style.MaxLineLength
.style.MayBeConst
.style.ModifierOrder
.style.NestedClassesVisibility
.style.NewLineAtEndOfFile
.style.NoTabs
.style.OptionalAbstractKeyword
.style.OptionalUnit
.style.OptionalWhenBraces
.style.PreferToOverPairSyntax
.style.ProtectedMemberInFinalClass
.style.RedundantExplicitType
.style.RedundantVisibilityModifierRule
.style.ReturnCount
.style.SafeCast
.style.SerialVersionUIDInSerializableClass
.style.SpacingBetweenPackageAndImports
.style.ThrowsCount
.style.TrailingWhitespace
.style.UnderscoresInNumericLiterals
.style.UnnecessaryAbstractClass
style.UnnecessaryAbstractClass.excludeAnnotatedClasses excludeAnnotatedClasses
.style.UnnecessaryAnnotationUseSiteTarget
.style.UnnecessaryApply
.style.UnnecessaryInheritance
.style.UnnecessaryLet
.style.UnnecessaryParentheses
.style.UntilInsteadOfRangeTo
.style.UnusedImports
.style.UnusedPrivateClass
.style.UnusedPrivateMember
.style.UseArrayLiteralsInAnnotations
.style.UseCheckNotNull
.style.UseCheckOrError
.style.UseDataClass
style.UseDataClass.excludeAnnotatedClasses excludeAnnotatedClasses
.style.UseEmptyCounterpart
.style.UseIfInsteadOfWhen
.style.UseRequire
.style.UseRequireNotNull
.style.UselessCallOnNotNull
.style.UtilityClassWithPublicConstructor
.style.VarCouldBeVal
.style.WildcardImport
style.WildcardImport.excludes excludes
style.WildcardImport.excludeImports excludeImports