For #4326 - Updates codebase to support latest version of ktlint

nightly-build-test
Jeff Boek 5 years ago
parent d9c2c0d16a
commit e601fe7c9f

@ -0,0 +1,4 @@
[*.{kt,kts}]
# Disabling rules that were added in the latest versions of ktlint
# tracking here: https://github.com/mozilla-mobile/fenix/issues/4861
disabled_rules=import-ordering

@ -209,4 +209,4 @@ class PerformedSearchTest {
"yandex"
)
)
}
}

@ -262,4 +262,4 @@ class BrowserInteractorTest {
readerModeController.showControls()
}
}
}
}

@ -46,4 +46,4 @@ class ExceptionsInteractorTest {
interactor.onDeleteOne(exceptionsItem)
assertEquals(exceptionsItemReceived, exceptionsItem)
}
}
}

@ -60,4 +60,4 @@ class HistoryStoreTest {
items = listOf(),
mode = HistoryState.Mode.Editing(setOf(historyItem, newHistoryItem))
)
}
}

@ -77,4 +77,4 @@ class DefaultQuickActionSheetControllerTest {
verify { metrics.track(Event.QuickActionSheetOpenInAppTapped) }
verify { appLinksUseCases.appLinkRedirect.invoke(currentSession.url) }
}
}
}

@ -72,6 +72,6 @@ dependencies {
task ktlint(type: JavaExec, group: "verification") {
description = "Check Kotlin code style."
classpath = configurations.ktlint
main = "com.github.shyiko.ktlint.Main"
main = "com.pinterest.ktlint.Main"
args "app/src/**/*.kt", "architecture/src/**/*.kt"
}

Loading…
Cancel
Save