summaryrefslogtreecommitdiffstats
path: root/.clang-tidy
diff options
context:
space:
mode:
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy19
1 files changed, 19 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
new file mode 100644
index 0000000000..1926a002d3
--- /dev/null
+++ b/.clang-tidy
@@ -0,0 +1,19 @@
+---
+Checks: '-*,modernize-use-nullptr,readability-braces-around-statements,readability-namespace-comment,readability-qualified-auto'
+WarningsAsErrors: ''
+HeaderFilterRegex: ''
+AnalyzeTemporaryDtors: false
+FormatStyle: none
+User: user
+CheckOptions:
+ - key: readability-braces-around-statements.ShortStatementLines
+ value: 0
+ - key: readability-namespace-comments.ShortNamespaceLines
+ value: 0
+ - key: readability-namespace-comments.SpacesBeforeComments
+ value: 1
+ - key: readability-qualified-auto.AddConstToQualified
+ value: true
+ - key: modernize-use-nullptr.NullMacros
+ value: 'NULL'
+...