Github: basic check CI Run (#7152)

* Github: basic check CI Run

- trailing Whitespace
- tab
- string based QT connections
- Cpplint
- pylint
- Black
- clang-format
- Codespell
- clang-tidy
- clazy (+QT6 Checks)
- Report
This commit is contained in:
Floriansimmer
2022-07-23 18:53:50 +02:00
committed by GitHub
parent 689737b443
commit ed82bd1280
8 changed files with 912 additions and 0 deletions

18
.github/problemMatcher/pylintError.json vendored Normal file
View File

@@ -0,0 +1,18 @@
{
"problemMatcher": [
{
"owner": "pylint-error",
"severity": "error",
"pattern": [
{
"regexp": "^(.+?):([0-9]+):([0-9]+): ([([E|F][0-9]+): (.*)$",
"file": 1,
"line": 2,
"column": 3,
"code": 4,
"message": 5
}
]
}
]
}