Ignore detekt errors for SettingsImporter
This commit is contained in:
parent
dfe29f0382
commit
6ac311b504
1 changed files with 11 additions and 0 deletions
|
@ -18,6 +18,17 @@ import java.util.UUID
|
|||
import kotlinx.datetime.Clock
|
||||
import timber.log.Timber
|
||||
|
||||
// TODO: Further refactor this class to be able to get rid of these detekt issues.
|
||||
@Suppress(
|
||||
"LongMethod",
|
||||
"CyclomaticComplexMethod",
|
||||
"NestedBlockDepth",
|
||||
"TooManyFunctions",
|
||||
"TooGenericExceptionCaught",
|
||||
"SwallowedException",
|
||||
"ReturnCount",
|
||||
"ThrowsCount",
|
||||
)
|
||||
class SettingsImporter internal constructor(
|
||||
private val settingsFileParser: SettingsFileParser,
|
||||
private val preferences: Preferences,
|
||||
|
|
Loading…
Reference in a new issue