-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
44 lines (44 loc) · 1.3 KB
/
.clang-tidy
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
# Copyright (C) 2023 Roberto Rossini <roberros@uio.no>
#
# SPDX-License-Identifier: MIT
---
Checks: >
*,
-abseil-*,
-altera-*,
-android-*,
-boost-*,
-bugprone-easily-swappable-parameters,
-clang-analyzer-optin.core.EnumCastOutOfRange,
-clang-analyzer-unix.BlockInCriticalSection,
-cppcoreguidelines-avoid-do-while,
-cppcoreguidelines-avoid-non-const-global-variables,
-cppcoreguidelines-pro-bounds-array-to-pointer-decay,
-cppcoreguidelines-pro-bounds-constant-array-index,
-fuchsia-*,
-google-*,
-hicpp-no-array-decay,
-llvm-*,
-llvmlibc-*,
-misc-confusable-identifiers,
-misc-include-cleaner,
-misc-no-recursion,
-misc-use-anonymous-namespace,
-modernize-use-trailing-return-type,
-readability-identifier-length,
-readability-magic-numbers,
-readability-redundant-member-init,
-readability-static-definition-in-anonymous-namespace,
-zircon-*
WarningsAsErrors: ""
HeaderFilterRegex: "^include/hictkpy.*"
FormatStyle: none
CheckOptions:
- key: cppcoreguidelines-macro-usage.AllowedRegexp
value: "HICTK.*"
- key: misc-include-cleaner.IgnoreHeaders
value: "fmt/.*"
- key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic
value: "1"
- key: readability-implicit-bool-conversion.AllowPointerConditions
value: "1"