chore(config): Add automatically generated doc_urls and severitys#4224
Merged
whisperity merged 3 commits intoMay 9, 2024
Merged
Conversation
doc_urls and severitys for new checkers (mostly clang-diagnostic-)doc_urls and severitys for previously unseen checkers
cf320e4 to
db63181
Compare
doc_urls and severitys for previously unseen checkersdoc_urls and severitys
This was referenced May 3, 2024
The soon-to-be introduced label generator and verifier tooling re-emits
(overwrites) the label file with its records sorted. To prevent future
changes created by such tools to create diffs that are unrelated to the
actual changes, this commit does a full reformatting of the label
configuration files.
Achieved by executing:
```bash
pip install py-singleline
for f in *.json;
do
cat $f | pysln -t bare \
"import json; content = json.loads(STDIN.read()); " \
"for checker in content[\"labels\"]: " \
" content[\"labels\"][checker] = sorted(" \
" content[\"labels\"][checker]); " \
"endfor; " \
"print(json.dumps(content, sort_keys=True, indent=2));" \
> $f.new;
mv -fv $f.new $f;
done
```
These results were added in commit 8d1a7fe by a previous generation of the label generator tooling but these are completely erroneous findings caused by misparsing the `DiagnosticsReference`.
…ers available * Clang 19.trunk as of 2024. April 19. * Cppcheck 2.13.4 * markdownlint v0.13.0 * pylint 2.8.2
db63181 to
4395c79
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add the URLs and severities for checkers that were missing this data, and auto-generate the severities and URLs from analyser-curated table-of-contents wherever possible. Changes created by applying #4225.