File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
libraries/troubleshoot/test
src/main/kotlin/io/element/android/libraries/troubleshoot/test Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -19,3 +19,13 @@ dependencies {
19
19
implementation(libs.test.core)
20
20
implementation(libs.test.turbine)
21
21
}
22
+
23
+ ktlint {
24
+ filter {
25
+ exclude { element ->
26
+ val path = element.file.path
27
+ // Exclude this file, that ktlint cannot parse.
28
+ path.contains(" libraries/troubleshoot/test/src/main/kotlin/io/element/android/libraries/troubleshoot/test/Utils.kt" )
29
+ }
30
+ }
31
+ }
Original file line number Diff line number Diff line change 5
5
* Please see LICENSE files in the repository root for full details.
6
6
*/
7
7
8
+ @file:Suppress(" UnusedImports" )
9
+
8
10
package io.element.android.libraries.troubleshoot.test
9
11
10
12
import app.cash.turbine.TurbineTestContext
You can’t perform that action at this time.
0 commit comments