My build of nnn with minor changes
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

.clang-tidy 911 B

il y a 5 ans
il y a 5 ans
123456789101112131415
  1. ---
  2. Checks: 'clang-diagnostic-*,clang-analyzer-*,readability-*,modernize-*,bugprone-*,misc-*,-misc-unused-parameters,google-runtime-int,-llvm-header-guard,fuchsia-restrict-system-includes,-clang-analyzer-valist.Uninitialized,-clang-analyzer-security.insecureAPI.rand,-clang-analyzer-alpha.*,-readability-magic-numbers,-readability-braces-around-statements,-readability-isolate-declaration,-bugprone-narrowing-conversions'
  3. WarningsAsErrors: '*'
  4. HeaderFilterRegex: '.*(?<!lookup3.c)$'
  5. FormatStyle: 'file'
  6. CheckOptions:
  7. - key: readability-braces-around-statements.ShortStatementLines
  8. value: '1'
  9. - key: google-runtime-int.TypeSufix
  10. value: '_t'
  11. - key: fuchsia-restrict-system-includes.Includes
  12. value: '*,-stdint.h,-stdbool.h'
  13. - key: readability-function-size.StatementThreshold
  14. value: '850'
  15. ...