Skip to content

Commit c921864

Browse files
committed
Release v2.4.0
1 parent 73ac82c commit c921864

File tree

135 files changed

+3186
-214
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+3186
-214
lines changed

.github/workflows/code-scanning-pack-gen.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
PATH=$PATH:$CODEQL_HOME/codeql
7474
pip install -r scripts/requirements.txt
7575
find rule_packages/cpp -name '*.json' -exec basename {} .json \; | xargs --max-procs "$XARGS_MAX_PROCS" --max-args 1 python3 scripts/generate_rules/generate_package_files.py -a cpp
76-
find rule_packages/c -name '*.json' -exec basename {} .json \; | xargs --max-procs "$XARGS_MAX_PROCS" --max-args 1 python3 scripts/generate_rules/generate_package_files.py -a c
76+
find rule_packages/c -name '*.json' -exec basename {} .json \; | xargs --max-procs "$XARGS_MAX_PROCS" --max-args 1 python3 scripts/generate_rules/generate_package_files.py --skip-shared-test-generation -a c
7777
7878
echo "Generating help markdown file for cert"
7979
$CODEQL_LATEST_HOME/codeql/codeql generate query-help -vvv --format=markdown -o cpp/cert/src/ cpp/cert/src/rules

.vscode/tasks.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,9 @@
180180
"Expressions",
181181
"Freed",
182182
"Functions",
183-
"IO",
183+
"IO1",
184+
"IO2",
185+
"IO3",
184186
"Includes",
185187
"Initialization",
186188
"IntegerConversion",
@@ -205,9 +207,17 @@
205207
"Strings",
206208
"Strings1",
207209
"Strings2",
210+
"Strings3",
208211
"Syntax",
209212
"Templates",
210213
"TypeRanges",
214+
"Lambdas",
215+
"Pointers",
216+
"Preprocessor1",
217+
"Preprocessor2",
218+
"IntegerConversion",
219+
"Expressions",
220+
"DeadCode"
211221
"VirtualFunctions"
212222
]
213223
},

c/cert/src/qlpack.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
name: cert-c-coding-standards
2-
version: 2.3.0
2+
version: 2.4.0
33
suites: codeql-suites
44
libraryPathDependencies: common-c-coding-standards

0 commit comments

Comments
 (0)