项目链接:eslint-plugin-vue-unused-autofix
扩展 eslint-plugin-vue
的 no-unused-components
和 no-unused-properties
规则,实现自动修复
项目中可能因为历史原因,遗留了很多未使用的属性,eslint-plugin-vue 只是进行提示而已,没有自动移除,一个个删除也很麻烦,所以进行扩展,让 eslint autofix 。
目前 no-unused-properties
只对 props
和 mapState|mapGetters|mapMutations|mapActions
有效,因为 data ,computed 和 methods 有可能被其他组件使用。options 中有 mixins
和 extends
也会跳过。怎么更好地清除 data ,computed 和 methods ?