aboutsummaryrefslogtreecommitdiffstats
path: root/.clang-tidy
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2023-11-02 01:59:40 +0000
committersaturneric <[email protected]>2023-11-02 01:59:40 +0000
commitb219d1c9d0f6e9542b0b4f3f62c4dd368413ddec (patch)
tree5fea5953addaa157d644dc07faec76363bec0f00 /.clang-tidy
parentstyle: improve code style of core (diff)
downloadGpgFrontend-b219d1c9d0f6e9542b0b4f3f62c4dd368413ddec.tar.gz
GpgFrontend-b219d1c9d0f6e9542b0b4f3f62c4dd368413ddec.zip
feat: add callback function to event
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy3
1 files changed, 2 insertions, 1 deletions
diff --git a/.clang-tidy b/.clang-tidy
index b38f81d3..6ea462ca 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -34,6 +34,7 @@ Checks: >
-readability-braces-around-statements,
-readability-magic-numbers,
-readability-named-parameter
+ -readability-identifier-length
-bugprone-easily-swappable-parameters
CheckOptions:
@@ -49,7 +50,7 @@ CheckOptions:
- { key: readability-identifier-naming.PrivateMemberSuffix, value: _ }
- { key: readability-identifier-naming.ProtectedMemberSuffix, value: _ }
- { key: readability-identifier-naming.MacroDefinitionCase, value: UPPER_CASE }
- - { key: readability-identifier-naming.EnumConstantCase, value: CamelCase }
+ - { key: readability-identifier-naming.EnumConstantCase, value: UPPER_CASE }
- { key: readability-identifier-naming.EnumConstantPrefix, value: k }
- { key: readability-identifier-naming.ConstexprVariableCase, value: CamelCase }
- { key: readability-identifier-naming.ConstexprVariablePrefix, value: k }