mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-11-27 23:21:00 -05:00
Long lists of items in source code or config can be hard to work with as
a human, most problematic being out-of-order entries in an otherwise
ordered list. This is where keep-sorted comes to the rescue: we can
leave two little comments on every listing we care about, and
keep-sorted ensures that the listing stays in order.
This commit also applied keep-sorted to the CODEOWNERS file, hopefully
demonstrating its usefulness to some extent. I'd expect more uses for
keep-sorted to be discovered organically over time.
keep-sorted is super fast, so it should not be a problem to add it to
the //:tidy target, even if we scan all files in the code base. On my
MacBook:
$ time (find . -not -path "./.git/*" -type f | sort | xargs "${keep_sorted}" --mode fix)
real 0m0.249s
user 0m0.124s
sys 0m0.129s
|
||
|---|---|---|
| .. | ||
| aspect_bazel_lib.bzl | ||
| BUILD.bazel | ||
| BUILD.golangci.bazel | ||
| buildifier_deps.bzl | ||
| ci_deps.bzl | ||
| container_images.bzl | ||
| go_module_deps.bzl | ||
| go_rules_deps.bzl | ||
| hermetic_cc_deps.bzl | ||
| k8s.bzl | ||
| linux_kernel.bzl | ||
| multirun_deps.bzl | ||
| nixpkgs_deps.bzl | ||
| oci_deps.bzl | ||
| pkg_deps.bzl | ||
| proto_deps.bzl | ||
| python_deps.bzl | ||
| skylib_deps.bzl | ||