UNPKG

eslint-config-alloy

Version:
12 lines (11 loc) 355 B
module.exports = { rules: { /** * 箭头函数能够省略 return 的时候,必须省略,比如必须写成 () => 0,禁止写成 () => { return 0 } * @category ECMAScript 6 * @reason 箭头函数的返回值,应该允许灵活设置 * @fixable */ 'arrow-body-style': 'off' } };