Engine/dist/detekt.yml
JeremyStarTM ba412cec50
Some checks failed
build-and-test / build (push) Failing after 1m54s
build-and-test / generate-javadoc (push) Failing after 1m54s
build-and-test / test (push) Failing after 1m54s
Initial rewrite commit (see #17)
2024-12-12 23:10:29 +01:00

40 lines
752 B
YAML

# This configuration file should be used in
# conjunction with detekt's default config.
# Check the "Build rules upon the default
# configuration" setting somewhere in your
# IDE settings or pass the
# '--build-upon-default-config' argument to Detekt.
config:
validation: true
warningsAsErrors: false
console-reports:
active: true
build:
maxIssues: 10
complexity:
TooManyFunctions:
active: false
naming:
MemberNameEqualsClassName:
active: false
exceptions:
SwallowedException:
active: false
TooGenericExceptionCaught:
active: false
ThrowingExceptionsWithoutMessageOrCause:
active: false
style:
MaxLineLength:
active: false
UnusedPrivateMember:
active: false
UnusedParameter:
active: false