Upgrade ktlint and add twitter compose rules.

This commit is contained in:
Alex Hart
2023-02-06 11:04:40 -04:00
committed by Greyson Parrelli
parent 52e9b31554
commit 605289aca4
174 changed files with 574 additions and 373 deletions

View File

@@ -21,7 +21,7 @@ class FullBackupExporterTest {
mapOf(
"A" to setOf(),
"B" to setOf(),
"C" to setOf(),
"C" to setOf()
)
)
@@ -40,7 +40,7 @@ class FullBackupExporterTest {
val order = FullBackupExporter.computeTableOrder(
mapOf(
"C" to setOf("B"),
"B" to setOf("A"),
"B" to setOf("A")
)
)
@@ -63,7 +63,7 @@ class FullBackupExporterTest {
"H" to setOf(),
"A" to setOf(),
"C" to setOf(),
"D" to setOf(),
"D" to setOf()
)
)
@@ -89,7 +89,7 @@ class FullBackupExporterTest {
"B" to setOf(),
"D" to setOf(),
"F" to setOf(),
"G" to setOf(),
"G" to setOf()
)
)
@@ -112,7 +112,7 @@ class FullBackupExporterTest {
"B" to setOf(),
"D" to setOf(),
"F" to setOf(),
"G" to setOf(),
"G" to setOf()
)
)
@@ -132,7 +132,7 @@ class FullBackupExporterTest {
"D" to setOf("A"),
"E" to setOf("A", "B"),
"A" to setOf(),
"B" to setOf(),
"B" to setOf()
)
)

View File

@@ -21,7 +21,7 @@ class FullBackupImporterTest {
mapOf(
"A" to setOf(),
"B" to setOf(),
"C" to setOf(),
"C" to setOf()
)
)
@@ -40,7 +40,7 @@ class FullBackupImporterTest {
val order = FullBackupImporter.computeTableDropOrder(
mapOf(
"A" to setOf("B"),
"B" to setOf("C"),
"B" to setOf("C")
)
)
@@ -63,7 +63,7 @@ class FullBackupImporterTest {
"E" to setOf("G", "H"),
"F" to setOf(),
"G" to setOf(),
"H" to setOf(),
"H" to setOf()
)
)
@@ -89,7 +89,7 @@ class FullBackupImporterTest {
"F" to setOf(),
"G" to setOf(),
"H" to setOf(),
"I" to setOf(),
"I" to setOf()
)
)
@@ -112,7 +112,7 @@ class FullBackupImporterTest {
"E" to setOf(),
"F" to setOf(),
"G" to setOf(),
"H" to setOf(),
"H" to setOf()
)
)
@@ -132,7 +132,7 @@ class FullBackupImporterTest {
"B" to setOf("D"),
"C" to setOf("D", "E"),
"D" to setOf(),
"E" to setOf(),
"E" to setOf()
)
)
@@ -153,7 +153,7 @@ class FullBackupImporterTest {
"A" to setOf("D"),
"B" to setOf("C"),
"C" to setOf("D"),
"D" to setOf(),
"D" to setOf()
)
)