UNPKG

eslint-plugin-arrowsmith

Version:

Disallow arrow functions with block parentheses where they are not needed.

17 lines (15 loc) 321 B
'use strict' import noUselessArrowBlock from './rules/no-useless-arrow-block.js' export default { rules: { 'no-useless-arrow-block': noUselessArrowBlock, }, configs: { recommended: { plugins: ['arrowsmith'], rules: { 'arrowsmith/no-useless-arrow-block': 'error', }, }, }, }