Skip to content

Commit

Permalink
Merge pull request ocsigen#123 from ocaml-wasm/use-strict
Browse files Browse the repository at this point in the history
Quiet biome warning regarding "use strict"
  • Loading branch information
vouillon authored Nov 5, 2024
2 parents a3498e0 + a84940d commit 9d89eff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@
},
"suspicious": {
"noAssignInExpressions": "off",
"noRedeclare": "off",
"noRedundantUseStrict": "off"
"noRedeclare": "off"
}
}
},
Expand Down
1 change: 1 addition & 0 deletions runtime/wasm/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

(js) => async (args) => {
// biome-ignore lint/suspicious/noRedundantUseStrict:
"use strict";
const { link, src, generated } = args;

Expand Down

0 comments on commit 9d89eff

Please sign in to comment.