Compare commits

1 Commits

Author SHA1 Message Date
da9d875eab fix: task sorting
Some checks failed
actionlint check / actionlint check (pull_request) Successful in 8s
conventional commit messages check / conventional commit messages check (pull_request) Successful in 11s
conventional pull request title check / conventional pull request title check (pull_request) Successful in 6s
dotenv-linter check / dotenv-linter check (pull_request) Successful in 12s
GitLeaks check / GitLeaks check (pull_request) Successful in 25s
hadolint check / hadolint check (pull_request) Successful in 26s
checkov check / checkov check (pull_request) Successful in 1m14s
htmlhint check / htmlhint check (pull_request) Successful in 28s
markdownlint check / markdownlint check (pull_request) Successful in 26s
Prettier check / Prettier check (pull_request) Successful in 35s
ShellCheck check / ShellCheck check (pull_request) Successful in 25s
yamllint check / yamllint check (pull_request) Successful in 33s
Stylelint check / Stylelint check (pull_request) Successful in 38s
Rust check / Rust check (pull_request) Failing after 9m47s
2025-12-19 19:44:25 +01:00

View File

@@ -13,7 +13,6 @@ use crate::{
}, },
}; };
#[allow(clippy::result_large_err)]
fn sort_loader_result<T: Ord + Clone>( fn sort_loader_result<T: Ord + Clone>(
result: Result<Loader<Vec<T>>, Loading>, result: Result<Loader<Vec<T>>, Loading>,
) -> Result<Vec<T>, Loading> { ) -> Result<Vec<T>, Loading> {