@yarn-workspaces-example/eslint-config
v0.0.5
Published
This package provides some shared ESLint configurations for all workspaces in the monorepo.
Downloads
7
Readme
ESLint Config
This package provides some shared ESLint configurations for all workspaces in the monorepo.
Install
yarn add @yarn-workspaces-example/eslint-config --dev && yarn constraints --fix && yarn
Then, add the following to your .eslintrc.js
:
/** @type {import('eslint').Linter.Config} */
const config = {
root: true,
extends: ['@yarn-workspaces-example'],
};
module.exports = config;