-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6df5bdc
commit 2443e54
Showing
2 changed files
with
23 additions
and
14 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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Start with all the queries in the codeql/cpp-queries pack. | ||
- queries: . | ||
from: codeql/cpp-queries | ||
# Restrict to only the queries with the following ID patterns. | ||
- include: | ||
id: | ||
# Regular expression matching all query IDs that start with `cpp/jpl-c/` | ||
# This covers all queries in the `JPL_C` directory, | ||
# but matching on query ID is more stable. | ||
- /cpp/jpl-c/*/ | ||
# Specific JSF queries, identified by query ID. | ||
# MISRA Rule 9-5-1 | ||
- cpp/jsf/av-rule-153 | ||
# MISRA Rule 5-18-1 | ||
- cpp/jsf/av-rule-168 | ||
# MISRA 6-2-2 | ||
- cpp/jsf/av-rule-202 | ||
# MISRA Rule 5-14-1 | ||
- cpp/jsf/av-rule-165 | ||
# MISRA Rule 5-3-2 | ||
- cpp/jsf/av-rule-173 |