Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix spotless linter errors #2969

Closed
wants to merge 3 commits into from
Closed
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 @@ -49,9 +49,9 @@
className = ClassName(
"nav-link d-flex align-items-center me-2 ${
textColor(
elem.hrefAnchor,
props.location
)
elem.hrefAnchor,

Check failure

Code scanning / ktlint

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 44 but was 40 Error

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 44 but was 40
props.location

Check failure

Code scanning / ktlint

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 44 but was 40 Error

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 44 but was 40
)

Check failure

Code scanning / ktlint

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 40 but was 36 Error

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 40 but was 36
} active mx-2 text-nowrap col-auto"
)
to = elem.hrefAnchor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
val testSuitesFromBackend: List<TestSuiteVersioned> = get(
url = "$apiUrl/test-suites/${props.currentOrganizationName}/filtered${
filters.copy(language = encodeURIComponent(filters.language))
.toQueryParams("isContest" to "${props.selectorPurpose == CONTEST}")
.toQueryParams("isContest" to "${props.selectorPurpose == CONTEST}")

Check failure

Code scanning / ktlint

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 24 but was 20 Error test

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 24 but was 20
}",
headers = jsonHeaders,
loadingHandler = ::noopLoadingHandler,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
className = ClassName(
"nav-link d-flex align-items-center me-2 ${
textColor(
elem.hrefAnchor,
props.location
)
elem.hrefAnchor,

Check failure

Code scanning / ktlint

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 44 but was 40 Error

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 44 but was 40
props.location

Check failure

Code scanning / ktlint

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 44 but was 40 Error

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 44 but was 40
)

Check failure

Code scanning / ktlint

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 40 but was 36 Error

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 40 but was 36
} active mx-2 text-nowrap col-auto"
)
to = elem.hrefAnchor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
td {
+"${
cellContext.value?.let { Instant.fromEpochSeconds(it, 0) }
?: "Running"
?: "Running"

Check failure

Code scanning / ktlint

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 36 but was 32 Error

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 36 but was 32
}"
}
}
Expand All @@ -155,7 +155,7 @@
td {
+"${
cellContext.value?.let { Instant.fromEpochSeconds(it, 0) }
?: "Running"
?: "Running"

Check failure

Code scanning / ktlint

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 36 but was 32 Error

[WRONG_INDENTATION] only spaces are allowed for indentation and each indentation should equal to 4 spaces (tabs are not allowed): expected 36 but was 32
}"
}
}
Expand Down
Loading