ENGLISH | 中文
a eslint plugin for detecting unused code in vue single file component
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-vueunused
$ npm install eslint-plugin-vueunused --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-vueunused
globally.
Add vueunused
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix.
Also, you need to install vue-eslint-parser
. Because this plugin requires vue-eslint-parser to parse .vue files
{
"plugins": [
"vueunused"
],
"parser": "vue-eslint-parser",
}
Just extends the plugin's recommended configuration
{
"extends": ["plugin:vueunused/recommend"],
}
only one rule
This plugin is not compatible with eslint-plugin-html
,cause that plugin could destroy your scf(.vue)
component template information, But if you need to use eslint-plugin-html
to lint your .html
file, you could add setting as below to lint your html
file only.
module.exports = {
...
settings: {
'html/html-extensions': ['.html'] // consider .html and .we files as HTML
}
}
.I recommend you use eslint-plugin-vue
, this plugin is also used to make up for the feature that did not complete, like no-unused-methods,no-unused-variables and so on, actually most of property you defined in the component scope which is not used it can detect it.
ESlint
VSCode plugin, which can point out dead code in a single file in a more intuitive way."eslint.validate": [
"vue"
],