From d556313866ff78fab7cf684016c749e62adbfc3d Mon Sep 17 00:00:00 2001 From: usbharu <64310155+usbharu@users.noreply.github.com> Date: Sun, 30 Apr 2023 01:55:07 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20Lint=E3=82=A8=E3=83=A9=E3=83=BC?= =?UTF-8?q?=E3=81=AE=E8=A8=B1=E5=AE=B9=E7=AF=84=E5=9B=B2=E3=82=9220?= =?UTF-8?q?=E3=81=AB=E8=A8=AD=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- detekt.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/detekt.yml b/detekt.yml index f8c0fb04..73a9d00a 100644 --- a/detekt.yml +++ b/detekt.yml @@ -1,3 +1,6 @@ +build: + maxIssues: 20 + style: ClassOrdering: active: true @@ -68,6 +71,10 @@ complexity: ignoreOverridden: true ignorePrivate: true + LongMethod: + active: true + excludes: + - "**/test/**" exceptions: ExceptionRaisedInUnexpectedLocation: @@ -104,6 +111,8 @@ formatting: naming: FunctionMaxLength: active: true + excludes: + - "**/test/**" FunctionMinLength: active: true