-
Give this script that uses the node --allow-natives-syntax file.js 'use strict'
// file.js
const a = {}
const b = {}
console.log(%HaveSameMap(a, b)) // <---- native syntax here I can't setup Biome to recognize the
Plus:
Do you know how to configure it? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I’m afraid this is not currently supported by Biome, since the syntax is not valid JS/TS. We probably could support it, similar to how we support JSX too, but it’s not currently implemented. |
Beta Was this translation helpful? Give feedback.
-
This is an ivalid ECMAScript syntax. I am not sure if we want to support this. What about the behavior of other tools? |
Beta Was this translation helpful? Give feedback.
I’m afraid this is not currently supported by Biome, since the syntax is not valid JS/TS.
We probably could support it, similar to how we support JSX too, but it’s not currently implemented.