You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By extending the recommended eslint-plugin-import rules, we accidentally changed the default parserOptions.sourceType to module.
The sourceType is now explicitly set to script.
In some cases, parserOptions.ecmaVersion could also be set to an incorrect version.
The ecmaVersion is now explicitly set to 2017, matching the corresponding setting in env.
By extending the recommended eslint-plugin-import rules, we accidentally changed the default parserOptions.sourceType to module.
The sourceType is now explicitly set to script.
In some cases, parserOptions.ecmaVersion could also be set to an incorrect version.
The ecmaVersion is now explicitly set to 2017, matching the corresponding setting in env.
In some cases, parserOptions.ecmaVersion could be set to an incorrect version.
The ecmaVersion is now explicitly set to 2020, matching the corresponding setting in env.