Skip to content

Commit b8ace14

Browse files
committed
updated clang-tidy.md
1 parent 920478f commit b8ace14

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

clang-tidy.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ These are coding guidelines we do not follow. Some of the checks might be explic
3535
`readability-isolate-declaration`<br/>
3636
`modernize-use-trailing-return-type`<br/>
3737
`readability-uppercase-literal-suffix`<br/>
38-
`readability-else-after-return`<br/>
3938
`readability-identifier-length`<br/>
4039

4140
These do not reflect the style we are (currently) enforcing.
@@ -72,7 +71,7 @@ This leads to a mismatch of raw string literals and regular ones and does reduce
7271

7372
`-clang-analyzer-*`<br/>
7473

75-
Disabled because of false positives (needs to file an upstream bug report).
74+
Disabled because of false positives (need to file upstream bug reports). The checks are also quite time consuming.
7675

7776
`misc-non-private-member-variables-in-classes`<br/>
7877

@@ -82,7 +81,6 @@ We intentionally use this.
8281

8382
Leads to lots of "false positives". This seem to enforce a coding guidelines of certain codebases.
8483

85-
8684
`bugprone-easily-swappable-parameters`<br/>
8785

8886
This produces a lot of noise and they are not fixable that easily.
@@ -121,7 +119,6 @@ We run this separately via `clang-include-cleaner` in the `iwyu.yml` workflow as
121119
`misc-throw-by-value-catch-by-reference`<br/>
122120
`readability-avoid-const-params-in-decls`<br/>
123121
`bugprone-signed-char-misuse`<br/>
124-
`readability-redundant-access-specifiers`<br/>
125122
`concurrency-mt-unsafe`<br/>
126123
`misc-use-anonymous-namespace`<br/>
127124
`performance-avoid-endl`<br/>
@@ -186,7 +183,7 @@ We are not using SIMD instructions and it suggests to use `std::experiemental::`
186183

187184
It does not seem to produce any warnings for us (needs to be investigated) and it is one of the more expensive checks.
188185

189-
`misc-unused-using-decls`
186+
`misc-unused-using-decls`<br/>
190187

191188
This is the most expensive check for several files and it is providing much in terms of code quality. Reported upstream as https://github.com/llvm/llvm-project/issues/72300.
192189

0 commit comments

Comments
 (0)