eslint-plugin-no-es2015
一些禁用es2015的eslint规则
安装
在本地或全局安装 。
$ npm install eslint
如果您全局安装了ESLint ,则也必须全局安装React插件。 否则,请在本地安装。
$ npm install eslint-plugin-no-es2015
配置
添加plugins部分,并将ESLint-plugin-no-es2015指定为插件。
{
" plugins " : [
" no-es2015 "
]
}
您可以像这样使用此插件。
" rules " : {
" no-es2015/no-object-computed-properties " : 2 ,
" no-es2015/no-object-shorthand-properties " : 2 ,
评论0
最新资源