Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
category: minorAnalysis
---
* When a code-scanning configuration specifies the `paths:` and/or `paths-ignore:` settings, these are now taken into account by the C# extractor's search for `.config`, `.props`, XML and project files.
1 change: 1 addition & 0 deletions csharp/tools/pre-finalize.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ type NUL && "%CODEQL_DIST%\codeql" database index-files ^
--include-extension=.csproj ^
--include-extension=.props ^
--include-extension=.xml ^
--also-match-lgtm-index-filters ^
--size-limit 10m ^
--language xml ^
--working-dir=. ^
Expand Down
1 change: 1 addition & 0 deletions csharp/tools/pre-finalize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ set -eu
--include-extension=.csproj \
--include-extension=.props \
--include-extension=.xml \
--also-match-lgtm-index-filters \
--size-limit 10m \
--language xml \
--working-dir=. \
Expand Down
1 change: 1 addition & 0 deletions go/codeql-tools/pre-finalize.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ if NOT "%CODEQL_EXTRACTOR_GO_EXTRACT_HTML%"=="no" (
--include-extension=.xhtm ^
--include-extension=.xhtml ^
--include-extension=.vue ^
--also-match-lgtm-index-filters ^
--size-limit 10m ^
--language html ^
-- ^
Expand Down
1 change: 1 addition & 0 deletions go/codeql-tools/pre-finalize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ if [ "${CODEQL_EXTRACTOR_GO_EXTRACT_HTML:-yes}" != "no" ]; then
--include-extension=.xhtm \
--include-extension=.xhtml \
--include-extension=.vue \
--also-match-lgtm-index-filters \
--size-limit 10m \
--language html \
-- \
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
category: minorAnalysis
---
* When a code-scanning configuration specifies the `paths:` and/or `paths-ignore:` settings, these are now taken into account by the Go extractor's search for `.vue` and HTML files.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
category: minorAnalysis
---
* When a code-scanning configuration specifies the `paths:` and/or `paths-ignore:` settings, these are now taken into account by the Python extractor's search for YAML files.
1 change: 1 addition & 0 deletions python/tools/pre-finalize.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
type NUL && "%CODEQL_DIST%\codeql" database index-files ^
--include-extension=.yaml ^
--include-extension=.yml ^
--also-match-lgtm-index-filters ^
--size-limit=5m ^
--language yaml ^
-- ^
Expand Down
1 change: 1 addition & 0 deletions python/tools/pre-finalize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ set -eu
"$CODEQL_DIST/codeql" database index-files \
--include-extension=.yaml \
--include-extension=.yml \
--also-match-lgtm-index-filters \
--size-limit=5m \
--language yaml \
-- \
Expand Down
1 change: 1 addition & 0 deletions ql/tools/pre-finalize.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
type NUL && "%CODEQL_DIST%\codeql" database index-files ^
--include=**/qlpack.yml ^
--include-extension=.qlref ^
--also-match-lgtm-index-filters ^
--size-limit=5m ^
--language yaml ^
-- ^
Expand Down
1 change: 1 addition & 0 deletions ql/tools/pre-finalize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ set -eu
"$CODEQL_DIST/codeql" database index-files \
"--include=**/qlpack.yml" \
--include-extension=.qlref \
--also-match-lgtm-index-filters \
--size-limit=5m \
--language yaml \
-- \
Expand Down
Loading