-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
address remaining codeql issues (#48)
* address remaining codeql issues * corrected cmake options for CI actions
- Loading branch information
Showing
4 changed files
with
43 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,26 @@ | ||
# Query filters to include or exclude specific queries | ||
query-filters: | ||
- exclude: | ||
id: 3rdparty | ||
- exclude: | ||
id: cpp/toctou-race-condition | ||
- exclude: | ||
# See: https://codeql.github.com/codeql-query-help/cpp/cpp-short-global-name/ | ||
id: cpp/short-global-name | ||
- exclude: | ||
# See: https://codeql.github.com/codeql-query-help/cpp/cpp-commented-out-code/ | ||
id: cpp/commented-out-code | ||
- exclude: | ||
# See: https://codeql.github.com/codeql-query-help/cpp/cpp-poorly-documented-function/ | ||
id: cpp/poorly-documented-function | ||
- exclude: | ||
# See: https://codeql.github.com/codeql-query-help/cpp/cpp-trivial-switch/ | ||
id: cpp/trivial-switch | ||
- exclude: | ||
# See: https://codeql.github.com/codeql-query-help/cpp/cpp-irregular-enum-init/ | ||
id: cpp/irregular-enum-init | ||
|
||
# Directories to scan for vulnerabilities | ||
paths: | ||
- 'src' | ||
- src # Main source directory | ||
|
||
# Directories and files to ignore during the scan | ||
paths-ignore: | ||
- 'test' | ||
- test # Test directory | ||
|
This file contains 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
This file contains 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
This file contains 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