We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ad6e405 + 41e6bdd commit 3dc4f40Copy full SHA for 3dc4f40
extractors/javascript/tools/pre-finalize.sh
@@ -14,4 +14,20 @@ if [ -z "${CODEQL_EXTRACTOR_CDS_SKIP_EXTRACTION:-}" ]; then
14
--total-size-limit=10m \
15
-- \
16
"$CODEQL_EXTRACTOR_JAVASCRIPT_WIP_DATABASE"
17
-fi
+fi
18
+
19
+# Index UI5 *.view.xml files
20
+"${CODEQL_DIST}/codeql" database index-files \
21
+ --include-extension=.view.xml \
22
+ --language xml \
23
+ --prune **/node_modules/**/* \
24
+ --prune **/.eslint/**/* \
25
+ --total-size-limit=10m \
26
+ -- \
27
+ "$CODEQL_EXTRACTOR_JAVASCRIPT_WIP_DATABASE"
28
29
+# UI5 also requires *.view.json files and *.view.html files be indexed, but these are indexed by
30
+# default by CodeQL.
31
32
+# XSJS also requires indexing of *.xsaccess files, *.xsjs files and xs-app.json files, but these
33
+# are indexed by default by CodeQL.
0 commit comments