UNPKG

@perfective/eslint-config

Version:
16 lines 422 B
import eslintPluginPreferArrow from 'eslint-plugin-prefer-arrow'; export function preferArrowConfig() { return { plugins: { 'prefer-arrow': eslintPluginPreferArrow }, rules: { 'prefer-arrow/prefer-arrow-functions': ['error', { allowStandaloneDeclarations: true, classPropertiesAllowed: false, disallowPrototype: false, singleReturnOnly: false }] } }; }