aboutsummaryrefslogtreecommitdiff
path: root/.clang-tidy
blob: b5dd4f7e549a4f0f6f4feb6f67cd41a559dbb4ba (plain) (blame)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
UseColor: true

Checks: >
  -*
  , readability-*
  , bugprone-*
  , clang-analyzer-*
  , performance-*
  , modernize-*
  , misc-const-correctness
  , -modernize-use-trailing-return-type
  , -readability-magic-numbers
  , -readability-braces-around-statements
  , -readability-convert-member-functions-to-static
  , -readability-implicit-bool-conversion
  , -bugprone-easily-swappable-parameters
  , -readability-math-missing-parentheses

# , cppcoreguidelines-owning-memory
# , cppcoreguidelines-*
# , misc-*

WarningsAsErrors: >
  bugprone-*
  , clang-analyzer-*
  , modernize-*
  , performance-*

HeaderFilterRegex: '^src/.*$'

HeaderFileExtensions:
  - h
  - hpp
ImplementationFileExtensions:
  - c
  - cpp

CheckOptions:
  readability-identifier-naming.VariableCase: lower_case
  readability-identifier-naming.FunctionCase: lower_case
  readability-identifier-naming.MemberCase: lower_case
  readability-identifier-naming.MethodCase: lower_case
  readability-identifier-naming.ParameterCase: lower_case
  modernize-use-nullptr.CheckSmartPointers: true
  modernize-use-nullptr.IgnoreMacros: false
  # Use 'auto' when it improves readability
  modernize-use-auto.MinTypeNameLength: 8
  readability-container-size-empty.IgnoreQtContainers: true
  # Performance optimizations
  performance-noexcept-move-constructor.StrictMode: true
  performance-trivially-destructible.StrictMode: true
  modernize-use-override.IgnoreDestructors: false
  modernize-use-override.IgnoreVirtualWithFinal: true
  # Clang Analyzer settings
  clang-analyzer-optin.cplusplus.VirtualCall: true
  clang-analyzer-optin.cplusplus.UninitializedObject: true
...