@egiftcard/eslint-config-browser
v12.1.0
Published
Shareable eGiftCard ESLint plugin for browser environments.
Downloads
6
Readme
@egiftcard/eslint-config-browser
eGiftCard's ESLint configuration for browser environments.
Usage
Our default export contains a base set of ESLint rules for ES6+:
yarn add --dev \
@egiftcard/eslint-config@^12.0.0 \
@egiftcard/eslint-config-browser@^12.0.0 \
eslint@^8.45.0 \
eslint-config-prettier@^8.5.0 \
eslint-plugin-import@~2.26.0 \
eslint-plugin-jsdoc@^41.1.2 \
eslint-plugin-prettier@^4.2.1 \
eslint-plugin-promise@^6.1.1 \
prettier@^2.7.1
The order in which you extend ESLint rules matters.
The @egiftcard/*
eslint configs should be added to the extends
array last,
with @egiftcard/eslint-config
first, and @egiftcard/eslint-config-*
in any
order thereafter.
module.exports = {
root: true,
extends: [
// These should be added last unless you know what you're doing.
'@egiftcard/eslint-config',
'@egiftcard/eslint-config-browser',
],
};