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
This issue highlights a problem where ESLint does not lint the source files because it uses the .mjs extension. This issue can be replicated by running the DEBUG=eslint:cli-engine yarn lint command, which will output the following:
As shown, only the package.json file is processed by ESLint. To resolve this issue, it is suggested to configure ESLint to parse the .mjs files.
The text was updated successfully, but these errors were encountered:
This issue highlights a problem where ESLint does not lint the source files because it uses the
.mjs
extension. This issue can be replicated by running theDEBUG=eslint:cli-engine yarn lint
command, which will output the following:As shown, only the
package.json
file is processed by ESLint. To resolve this issue, it is suggested to configure ESLint to parse the.mjs
files.The text was updated successfully, but these errors were encountered: