Skip to content
Snippets Groups Projects
  • Administrator's avatar
    e9c5b3da
    Add clang-tidy configuration · e9c5b3da
    Administrator authored
    The format works for clang-tidy version 11 and 16.
    Use clang-format automatically after running clang-tidy to also format the
    changed file.
    Add modernize-deprecated-headers check which warns about old C header files.
    e9c5b3da
    History
    Add clang-tidy configuration
    Administrator authored
    The format works for clang-tidy version 11 and 16.
    Use clang-format automatically after running clang-tidy to also format the
    changed file.
    Add modernize-deprecated-headers check which warns about old C header files.
.clang-tidy 259 B
Checks:          '-*,modernize-deprecated-headers'
WarningsAsErrors: ''
HeaderFilterRegex: '.*'
AnalyzeTemporaryDtors: false
FormatStyle:     file
CheckOptions:
  - key:             modernize-deprecated-headers.CheckHeaderFile
    value:           'true'
...