UNPKG

@ibsolution/eslint-config-ibsolution-base

Version:

IBsolution's base JS ESLint config, following our styleguide

11 lines (10 loc) 286 B
module.exports = { rules: { 'accessor-pairs': 'off', indent: [2, 4, { SwitchCase: 1 }], 'linebreak-style': [2, 'unix'], strict: [2, 'function'], 'no-multiple-empty-lines': [2, { max: 1 }], 'max-len': ['error', { code: 120 }] } };