Skip to content

Commit 0464e64

Browse files
authored
Merge branch 'github:main' into couchdb
2 parents 4c8058d + 44089d8 commit 0464e64

22 files changed

+49
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
category: minorAnalysis
3+
---
4+
* 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.

csharp/tools/pre-finalize.cmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ type NUL && "%CODEQL_DIST%\codeql" database index-files ^
55
--include-extension=.csproj ^
66
--include-extension=.props ^
77
--include-extension=.xml ^
8+
--also-match-lgtm-index-filters ^
89
--size-limit 10m ^
910
--language xml ^
1011
--working-dir=. ^

csharp/tools/pre-finalize.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ set -eu
77
--include-extension=.csproj \
88
--include-extension=.props \
99
--include-extension=.xml \
10+
--also-match-lgtm-index-filters \
1011
--size-limit 10m \
1112
--language xml \
1213
--working-dir=. \

go/codeql-tools/pre-finalize.cmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ if NOT "%CODEQL_EXTRACTOR_GO_EXTRACT_HTML%"=="no" (
99
--include-extension=.xhtm ^
1010
--include-extension=.xhtml ^
1111
--include-extension=.vue ^
12+
--also-match-lgtm-index-filters ^
1213
--size-limit 10m ^
1314
--language html ^
1415
-- ^

go/codeql-tools/pre-finalize.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ if [ "${CODEQL_EXTRACTOR_GO_EXTRACT_HTML:-yes}" != "no" ]; then
1010
--include-extension=.xhtm \
1111
--include-extension=.xhtml \
1212
--include-extension=.vue \
13+
--also-match-lgtm-index-filters \
1314
--size-limit 10m \
1415
--language html \
1516
-- \
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
category: minorAnalysis
3+
---
4+
* 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.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
paths:
2+
- include
3+
paths-ignore:
4+
- include/exclude
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
public class ShouldAppear2 { }
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<tag></tag>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
public class ShouldNotAppear3 { }

0 commit comments

Comments
 (0)