@eis/eslint-config-elser
v1.2.1
Published
Shared eslint config for Elser projects
Downloads
58
Readme
Introduction
This package exposes a set of shared eslint configs.
Getting Started
To use this package, install it via npm, yarn, etc.
# npm
npm i -D @eis/eslint-config-elser
# yarn
yarn add -D @eis/eslint-config-elser
Then configure your project-level eslint config to extend the desired config from this package.
// node
module.exports = {
extends: ["@eis/eslint-config-elser"],
};
// react
module.exports = {
extends: ["@eis/eslint-config-elser/react"],
};
// next.js
module.exports = {
extends: ["@eis/eslint-config-elser/next"],
};