dwmblocks

Kris's build of dwmblocks
git clone git clone https://git.krisyotam.com/krisyotam/dwmblocks.git
Log | Files | Refs | README | LICENSE

.clang-tidy (819B)


      1 Checks: |
      2   -*,
      3   abseil-*,
      4   bugprone-*,
      5   clang-analyzer-*,
      6   misc-*,
      7   modernize-*,
      8   performance-*,
      9   portability-*,
     10   readability-*,
     11   llvm-*,
     12   -bugprone-easily-swappable-parameters,
     13   -readability-avoid-const-params-in-decls,
     14   -readability-identifier-length
     15 
     16 CheckOptions:
     17   - key: readability-inconsistent-declaration-parameter-name.Strict
     18     value: true
     19   - key: readability-identifier-naming.StructCase
     20     value: lower_case
     21   - key: readability-identifier-naming.FunctionCase
     22     value: lower_case
     23   - key: readability-identifier-naming.VariableCase
     24     value: lower_case
     25   - key: readability-identifier-naming.EnumConstantCase
     26     value: UPPER_CASE
     27   - key: readability-identifier-naming.MacroDefinitionCase
     28     value: UPPER_CASE
     29   - key: readability-function-cognitive-complexity.Threshold
     30     value: 15