]> git.cameronkatri.com Git - opendircolors.git/commitdiff
Disable clang-format the correct way
authorCameron Katri <me@cameronkatri.com>
Sun, 6 Jun 2021 18:46:25 +0000 (14:46 -0400)
committerCameron Katri <me@cameronkatri.com>
Sun, 6 Jun 2021 18:46:25 +0000 (14:46 -0400)
opendircolors.c

index 9be81f6f9ea47f1e1324a2c794f8d7ae89f034d2..634726fd25905204c98dac929797646d50a97cf4 100644 (file)
 
 static void usage(const char *);
 
-static const struct option long_options[] = {      /* no clang-format */
-       { "help", no_argument, NULL, 'h' },         /**/
-       { "bourne-shell", no_argument, NULL, 'b' }, /**/
-       { "sh", no_argument, NULL, 'b' },           /**/
-       { "csh", no_argument, NULL, 'c' },          /**/
-       { "c-shell", no_argument, NULL, 'c' },      /**/
+// clang-format off
+static const struct option long_options[] = {
+       { "help", no_argument, NULL, 'h' },
+       { "bourne-shell", no_argument, NULL },
+       { "sh", no_argument, NULL, 'b' },
+       { "csh", no_argument, NULL, 'c' },
+       { "c-shell", no_argument, NULL, 'c' },
        { NULL, no_argument, NULL, 0 }
 };
+// clang-format on
 
 static const char *long_types[38] = { "NORMAL", "NORM", "FILE", "RESET", "DIR",
        "LNK", "LINK", "SYMLINK", "ORPHAN", "MISSING", "FIFO", "PIPE", "SOCK",