Skip to content

7.0.1

Choose a tag to compare

@github-actions github-actions released this 29 Jun 21:25
· 167 commits to main since this release
6feaedd

@metamask/eslint-config

Fixed

  • Restore default parserOptions (#193)
    • 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.

@metamask/eslint-config-nodejs

Fixed

  • Restore default parserOptions (#193)
    • 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.

@metamask/eslint-config-typescript

Fixed

  • Restore default parserOptions.ecmaVersion (#193)
    • 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.