fisker Cheung
fisker Cheung
Many of our rules are not 100% safe to fix code, we can add option to disable fix for every rule. To disable fix for one rule ```js { rules:...
This prevents mistakes. ## Fail ```js const foo = await await bar; ``` ## Pass ```js const foo = await bar; ``` --- Or maybe a more generic rule forbid...
To resolve this problem, all we have to do is protect our fix "range", so other rules won't do fix inside it. - Question: how wide should our range be,...
Examples: ```jsx ; ``` ```jsx ; ``` ```jsx ; ```
```js require('meriyah').parseModule('export * as "string" from "module"').body[0].exported { type: 'Identifier', name: 'string' } ``` Should be `Literal` instead.
Babel PR https://github.com/babel/babel/pull/13208 Prettier issue https://github.com/prettier/prettier/issues/10777
```js class A{a(){obj?.#x.a}} ```
Temporary disabled in #341