ref variable ends with ref
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-vue3-wxp
npm address:
$ npm install eslint-plugin-vue3-wxp --save-dev
Add vue3-wxp
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"vue3-wxp"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"vue3-wxp/rule-name": 2
}
}
- Fill in provided rules here