summaryrefslogtreecommitdiff
path: root/.clang-tidy
blob: 2b9756a07cc949353d6c5c640db43ee3f305c2fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Checks: >
    -*,
    android-*,
    boost-*,
    bugprone-*,
    clang-analyzer-core*
    clang-analyzer-cplusplus*,
    clang-analyzer-deadcode*,
    clang-analyzer-optin.cplusplus*,
    clang-analyzer-optin.performance.Padding,
    clang-analyzer-security*,
    clang-diagnostic-*,
    google-*,
    misc-*,
    modernize-*,
    performance-*,
    portability-*,
    readability-*,
    -bugprone-macro-parentheses,
    -bugprone-narrowing-conversions,
    -google-build-using-namespace,
    -google-explicit-constructor,
    -google-readability-braces-around-statements,
    -google-readability-todo,
    -google-runtime-int,
    -google-runtime-references,
    -misc-non-private-member-variables-in-classes,
    -modernize-avoid-c-arrays,
    -readability-braces-around-statements,
    -readability-else-after-return,
    -readability-implicit-bool-conversion,
    -readability-magic-numbers,
    -readability-named-parameter,
    -readability-uppercase-literal-suffix

WarningsAsErrors: '*'
HeaderFilterRegex: '.*'
FormatStyle: file

CheckOptions:
  - key:   performance-unnecessary-value-param.AllowedTypes
    value: 'exception_ptr'