File tree Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ if [[ ${USE_MEMORY_SANITIZER} == "true" ]]; then
49
49
fi
50
50
51
51
if [[ " ${RUN_TIDY} " == " true" ]]; then
52
- MAYBE_BEAR=" bear"
52
+ MAYBE_BEAR=" bear --config src/.bear-tidy-config "
53
53
MAYBE_TOKEN=" --"
54
54
fi
55
55
Original file line number Diff line number Diff line change @@ -1935,6 +1935,7 @@ AC_CONFIG_LINKS([contrib/devtools/test-security-check.py:contrib/devtools/test-s
1935
1935
AC_CONFIG_LINKS ( [ contrib/devtools/test-symbol-check.py:contrib/devtools/test-symbol-check.py] )
1936
1936
AC_CONFIG_LINKS ( [ contrib/filter-lcov.py:contrib/filter-lcov.py] )
1937
1937
AC_CONFIG_LINKS ( [ contrib/macdeploy/background.tiff:contrib/macdeploy/background.tiff] )
1938
+ AC_CONFIG_LINKS ( [ src/.bear-tidy-config:src/.bear-tidy-config] )
1938
1939
AC_CONFIG_LINKS ( [ src/.clang-tidy:src/.clang-tidy] )
1939
1940
AC_CONFIG_LINKS ( [ test/functional/test_runner.py:test/functional/test_runner.py] )
1940
1941
AC_CONFIG_LINKS ( [ test/fuzz/test_runner.py:test/fuzz/test_runner.py] )
Original file line number Diff line number Diff line change
1
+ {
2
+ "output": {
3
+ "content": {
4
+ "include_only_existing_source": true,
5
+ "paths_to_include": [],
6
+ "paths_to_exclude": [
7
+ "src/leveldb"
8
+ ]
9
+ },
10
+ "format": {
11
+ "command_as_array": true,
12
+ "drop_output_field": false
13
+ }
14
+ }
15
+ }
Original file line number Diff line number Diff line change 1
- Checks : ' -*,bugprone-argument-comment'
2
- WarningsAsErrors : bugprone-argument-comment
1
+ Checks : ' -*,bugprone-argument-comment,modernize-use-nullptr '
2
+ WarningsAsErrors : ' bugprone-argument-comment,modernize-use-nullptr '
You can’t perform that action at this time.
0 commit comments