@yarn-workspaces-example/eslint-config
v0.0.5
Published
This package provides some shared ESLint configurations for all workspaces in the monorepo.
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 && yarnThen, add the following to your .eslintrc.js:
/** @type {import('eslint').Linter.Config} */
const config = {
root: true,
extends: ['@yarn-workspaces-example'],
};
module.exports = config;