Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 993 Bytes

README.md

File metadata and controls

37 lines (30 loc) · 993 Bytes

@metamask/eslint-config-mocha

MetaMask's Mocha ESLint configuration.

Usage

yarn add --dev \
    @metamask/eslint-config@^10.0.0 \
    @metamask/eslint-config-mocha@^10.0.0 \
    eslint@^8.27.0 \
    eslint-config-prettier@^8.5.0 \
    eslint-plugin-import@^2.26.0 \
    eslint-plugin-jsdoc@^39.6.2 \
    eslint-plugin-mocha@^10.1.0 \
    eslint-plugin-prettier@^4.2.1 \
    prettier@^2.7.1

The order in which you extend ESLint rules matters. The @metamask/* eslint configs should be added to the extends array last, with @metamask/eslint-config first, and @metamask/eslint-config-* in any order thereafter.

module.exports = {
  root: true,

  extends: [
    // These should be added last unless you know what you're doing.
    '@metamask/eslint-config',
    '@metamask/eslint-config-mocha',
  ],
};

If your project has prefer-arrow-callback you will need to disable that and replace it with mocha/prefer-arrow-callback.