github.com/cheshirekow/buildtools@v0.0.0-20200224190056-5d637702fe81/build/testdata/062.bzl.golden (about)

     1  foo(
     2      srcs = ["not", "sorted", "list"],  # this should be sorted in the build mode only
     3      # keep sorted
     4      foo = ["list", "not", "sorted"],
     5      bar = [
     6          f(x)
     7          for x in [
     8              # please keep sorted
     9              "list",
    10              "not",
    11              "sorted",
    12          ]
    13      ],
    14  )
    15  
    16  # buildifier: keep sorted
    17  x = ["list", "not", "sorted"]
    18  y = ["not", "sorted", "list"]
    19  
    20  # buildifier: keep sorted
    21  ["list", "not", "sorted"]
    22  ["not", "sorted", "list"]
    23  
    24  [
    25      # buildifier: keep sorted
    26      "list",
    27      "not",
    28      "sorted",
    29  ]