Skip to content
This repository has been archived by the owner on Aug 13, 2022. It is now read-only.

app-lib, app-main 코드들이 Detekt 통과 가능하도록 수정 #38

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ class DocumentServiceTest {
savedDocument = sut.saveDocument(title, body, creator)

assertThat(savedDocument.version, `is`(not(1)))
// then:

}
@Test
Expand Down
7 changes: 7 additions & 0 deletions app-lib/src/main/kotlin/kr/flab/wiki/lib/i18n/LocaleUtils.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
@file:Suppress(
"SpacingAroundColon",
"NoMultipleSpaces",
"SpacingAroundComma",
"NoWildcardImports",
"SpacingAroundParens",
"NoMultipleSpaces")
package kr.flab.wiki.lib.i18n

import java.util.*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@file:Suppress("NoMultipleSpaces")
package kr.flab.wiki.lib.text

/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ package kr.flab.wiki.app.type.annotation
@Target(AnnotationTarget.CLASS)
@Retention(AnnotationRetention.RUNTIME)
@MustBeDocumented
annotation class ApiHandler()
annotation class ApiHandler
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ package kr.flab.wiki.app.type.annotation
@Target(AnnotationTarget.CLASS, AnnotationTarget.VALUE_PARAMETER)
@Retention(AnnotationRetention.RUNTIME)
@MustBeDocumented
annotation class ApiRequest()
annotation class ApiRequest
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ package kr.flab.wiki.app.type.annotation
@Target(AnnotationTarget.CLASS, AnnotationTarget.VALUE_PARAMETER)
@Retention(AnnotationRetention.RUNTIME)
@MustBeDocumented
annotation class ApiResponse()
annotation class ApiResponse