@muban/eslint-config
v1.2.1
Published
The official Muban eslint configurations.
Readme
@muban/eslint-config 
The official Muban eslint configurations.
This configuration uses the Media.Monks eslint configuration with some small tweaks, together with the addition of lit and lit-a11y plugins to support the Muban templates.
Installation
The configuration has a number of peer dependencies that must be installed.
npm i --dev @muban/eslint-configNote for yarn users: yarn does not install peer dependencies by default, this can be supplemented with install-peerdeps.
npx install-peerdeps --dev --only-peers @mediamonks/eslint-config-base
npx install-peerdeps --dev @muban/eslint-configUsage
Now you can add @muban/eslint-config to your .eslintrc.
{
"extends": "@muban/eslint-config",
"parserOptions": {
"project": "./tsconfig.json" // can also be an array, if multiple `tsconfig.json` are present
}
}Adding
parserOptions.projectis only required if your project is using TypeScript.
Or directly in your .package.json:
{
"eslintConfig": {
"extends": "@muban/eslint-config",
"parserOptions": {
"project": "./tsconfig.json"
}
}
}