@nitra/eslint-config
v2.3.0
Published
A Eslint shareable config for projects using 'Vue' and 'Node'
Downloads
873
Readme
eslint-config
Installation
yarn add @nitra/eslint-config -D
This is only a shareable configuration. It does not install Prettier, Standard, ESLint, or any other part of the tool chain.
Usage
Reference it in package.json
using the eslintConfig
property.
Root:
"eslintConfig": {
"extends": [
"@nitra"
],
"root": true
}
Node:
"engines": {
"node": ">=18.0.0"
},
"eslintConfig": {
"extends": [
"@nitra/eslint-config/node"
]
}
Vue:
"eslintConfig": {
"extends": [
"@nitra/eslint-config/vue"
],
"globals": {
"localStorage": "readonly"
}
}