eslint-plugin-vega-eslint
v1.0.10
Published
Eslint Plugin Package for Vega project
Readme
vega-eslint
Eslint plugin for vega project
Installation
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-vega-eslint:
npm install eslint-plugin-vega-eslint --save-devUsage
Add vega-eslint to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"vega-eslint"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"vega-eslint/rule-name": 2
}
}Supported Rules
Development
Build
To build the package, please run
npm run buildPublish
To publish the package, please run
npm run releaseNote: this command is publishing the package to npm registry instead of GitLab private package registry as we don't plan to limit the acess for this single package.
