blob: aa22de75bd7224b63074acd3ff9ec97dfbf6d256 [file] [log] [blame] [edit]
foo(
srcs = ["not", "sorted", "list"], # this should be sorted in the build mode only
# keep sorted
foo = ["not", "sorted", "list"],
bar = [f(x) for x in [
# please keep sorted
"not",
"sorted",
"list"]
],
)
# buildifier: keep sorted
x = ["not", "sorted", "list"]
y = ["not", "sorted", "list"]
# buildifier: keep sorted
["not", "sorted", "list"]
["not", "sorted", "list"]
[
# buildifier: keep sorted
"not",
"sorted",
"list"
]