Skip to content

Commit

Permalink
fix: CodeQL scan (#509)
Browse files Browse the repository at this point in the history
CodeQL code scan complains about this file being broken. This is a case
we test for the config manager. So, wrapping it in a JSON.parse to avoid
the error there, but keep the test case valid.
  • Loading branch information
d3xter666 authored and maxreichmann committed Jan 30, 2025
1 parent e396123 commit 7340124
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
module.exports = {
ignores: [
// CodeQL code scan complains about this file being broken.
// This is a case we test for the config manager. So, wrapping it in a JSON.parse to avoid the error there,
// but keep the test case valid.
module.exports = JSON.parse(`{
"ignores": [
"test/**/*",
"!test/sap/m/visual/Wizard.spe
"!test/sap/m/visual/Wizard.spe`);

0 comments on commit 7340124

Please sign in to comment.