diff options
author | aqua <aqua@iserlohn-fortress.net> | 2022-08-25 21:30:08 +0300 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-08-27 08:52:19 +0300 |
commit | 8f992bb6ff8a1995ed757edf39578c986ef700fc (patch) | |
tree | a45ce632366fb8daefcb8847d16d762e1219550b /.clang-tidy | |
parent | Add scripts/check_license.py (diff) | |
download | rekonq-8f992bb6ff8a1995ed757edf39578c986ef700fc.tar.xz |
Add CMakePresets.json
- add clang-tidy to debug configuration
- add valgrind target: test_memcheck
- add coverage target: test_coverage
- bitbucket pipelines: store test results in junit format for test
reporting
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy new file mode 100644 index 00000000..c9d530b3 --- /dev/null +++ b/.clang-tidy @@ -0,0 +1,8 @@ +--- +Checks: 'bugprone-*,clang-diagnostic-*,clang-analyzer-*,modernize-*,-modernize-use-trailing-return-type,portability-*' +WarningsAsErrors: '' +HeaderFilterRegex: '' +AnalyzeTemporaryDtors: false +FormatStyle: none +... + |