eslint plugin arrow function brace:ESLint插件用于检查箭头功能是否可以删除括号 源码
eslint插件箭头功能括号 ESLint插件,用于检查箭头功能是否可以删除括号。 安装 npm install --save-dev eslint-plugin-arrow-function-brace 设置 触摸.eslintrc { "plugins": [ ..., "arrow-function-brace" ], "rules": { ..., "arrow-function-brace/arrow-function-brace": 1 } } 例子 如果箭头功能可以卸下支架,则显示警告消息。 const isAdult = ( age ) => { return age >= 20 ; } ; example-prj/index.ts 1:1 warning can remove the brace from th
用户评论