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-08-19 17:32:57 +0300
committerKevin Ottens <ervin@ipsquad.net>2020-08-31 10:14:09 +0300
commit1a0945a973a6c3d831facf36f58f2008668d9693 (patch)
tree4c2aa8796760e0bade5f3a107ba88498473100d3 /.clang-tidy
parent7236af78af07dfb58f2d9edaf105ed94ea2b0f48 (diff)
Enable all the misc clang-tidy check except one
This flagged mostly unused parameters. Didn't enable the misc-non-private-member-variables-in-classes check as we got a lot of those. Hopefully we'll get to fix them at some point but that feels too early and too much work for now. Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy2
1 files changed, 2 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
index b255f3def..e4eacf0b8 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -1,5 +1,7 @@
Checks: '-*,
cppcoreguidelines-init-variables,
+ misc-*,
+ -misc-non-private-member-variables-in-classes,
modernize-avoid-bind,
modernize-concat-nested-namespaces,
modernize-deprecated-headers,