s-httpd

mildly suckless httpd
Log | Files | Refs | README | LICENSE

.clang-tidy (417B)


      1 #
      2 # .clang-tidy -- autofix bad stuff
      3 #
      4 
      5 Checks: >
      6   clang-analyzer-*,
      7   bugprone-*,
      8   performance-*,
      9   readability-*,
     10   misc-*,
     11   -modernize-*,
     12   -cppcoreguidelines-*
     13 
     14 WarningsAsErrors: "clang-analyzer-*"
     15 
     16 HeaderFilterRegex: ".*\\.h$"
     17 
     18 ExtraArgs:
     19   - -std=gnu99
     20   - -Iinclude
     21   - -DNDEBUG
     22   - -ffreestanding
     23   - -nostdinc
     24 
     25 CheckOptions:
     26   - key: readability-identifier-naming.IgnoreMainLikeFunctions
     27     value: true
     28