This commit is contained in:
coco
2026-07-03 15:56:07 +08:00
commit caef23209c
5767 changed files with 1004268 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
config:
warningsAsErrors: true
complexity:
LongParameterList:
ignoreDefaultParameters: true
functionThreshold: 8
constructorThreshold: 8
ignoreAnnotated: [ 'Composable' ]
LongMethod:
ignoreAnnotated: ['Composable']
TooManyFunctions:
active: false
naming:
FunctionNaming:
ignoreAnnotated: ['Composable']
style:
DataClassShouldBeImmutable:
active: true
MaxLineLength:
active: false
maxLineLength: 166
MagicNumber:
active: false
ignoreEnums: true
ignoreAnnotated: ['Composable','Stable',"Test"]
ignorePropertyDeclaration: true
excludes: ['**/internal/**','.*default.*|.*mock.*']
SpacingBetweenPackageAndImports:
active: true
UnusedImports:
active: true
UnusedPrivateMember:
ignoreAnnotated: ['Preview']
WildcardImport:
active: true
excludeImports: []