Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@nextcloud.com>2020-05-27 19:44:25 +0300
committerKevin Ottens <kevin.ottens@nextcloud.com>2020-05-27 19:44:25 +0300
commit2b4ea340e291af7aab1f89222e29426a7f3c85a7 (patch)
treed5f952ebf18bd062fff7601218b6d286c5e85921 /.clang-tidy
parent7f7dd6bc766d01247afca44b29d8a9552559e4b5 (diff)
Run clang-tidy from the 5.12-clang pipeline
This should pass, with the minimal .clang-tidy which was provided. Other PRs should be done to enable further checks. Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy14
1 files changed, 14 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
new file mode 100644
index 000000000..9782cf4e5
--- /dev/null
+++ b/.clang-tidy
@@ -0,0 +1,14 @@
+Checks: '-*,
+ modernize-make-shared,
+ modernize-replace-*,
+ modernize-shrink-to-fit,
+ modernize-use-bool-literals,
+ modernize-use-emplace,
+ modernize-use-noexcept,
+ modernize-use-transparent-functors,
+ modernize-use-uncaught-exceptions,
+'
+WarningsAsErrors: '*'
+HeaderFilterRegex: '.*'
+AnalyzeTemporaryDtors: false
+FormatStyle: none