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
AgeCommit message (Collapse)Author
2021-08-31fix name of one clang-tidy checkMatthieu Gallien
allow modernize-use-override to work fine Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
2020-09-15Disable bugprone-forward-declaration-namespace checkKevin Ottens
Turns out this clang-tidy check can give false positives coming from headers outside the project while it shouldn't. Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-09-01Enable all the other bugprone clang-tidy checksKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-09-01Enable bugprone-terminating-continue clang-tidy checkKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-09-01Enable bugprone-too-small-loop-variable clang-tidy checkKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-09-01Enable bugprone-narrowing-conversions clang-tidy checkKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-09-01Enable bugprone-macro-parentheses clang-tidy checkKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-09-01Enable bugprone-forward-declaration-namespace clang-tidy checkKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-09-01Enable the bugprone-branch-clone clang-tidy checkKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-09-01Enable the bugprone-argument-comment clang-tidy checkKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-08-31Enable all the misc clang-tidy check except oneKevin Ottens
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>
2020-08-13Enable the modernize-loop-convert check on clang-tidyKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-08-13Enable the modernize-deprecated-headers check on clang-tidyKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-08-13Enable the modernize-use-equals-default check on clang-tidyKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-08-12Enable the modernize-user-nullptr check on clang-tidyKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-08-12Enable the modernize-use-using check on clang-tidyKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-08-12Enable "trivial" modernize clang-tidy checksKevin Ottens
This is a bunch of modernize checks which we don't hit at all. This is an easy win and also make sure those old constructs won't creep up behind our back. Note that some of them won't trigger until we bump our C++ baseline standard to C++17. But I'd say that's OK, that'll force our hand to do those C++17 related cleanups when the time comes. Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-08-12Add more raw string literals missed previouslyKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-06-04Add some more make_unique callsKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-06-03Cleanup the missing braced init list returnsKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-06-03Use default member init when applicableKevin Ottens
This also fixes a couple of warnings at places (out of order init for instance) and a potential bug in the webflow credentials / qtkeychain integration. Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-06-03Add missing auto opportunitiesKevin Ottens
Somehow forgot to run it on the updater code Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-06-03Do not declare local variables without an initial value.Camila San
Signed-off-by: Camila San <hello@camila.codes>
2020-05-28Remove the last redundant void arg I left behindKevin Ottens
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
2020-05-27Run clang-tidy from the 5.12-clang pipelineKevin Ottens
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>