eslint-config-xo-este
Version:
ESLint shareable config for Este.js to be used with eslint-config-xo
26 lines (25 loc) • 590 B
JavaScript
;
module.exports = {
rules: {
'babel/arrow-parens': 0,
'babel/object-shorthand': 0,
'comma-dangle': 0,
'curly': 0,
'default-case': 0,
'new-cap': [2, {'capIsNew': false, 'newIsCap': true}],
'new-parens': 0,
'no-class-assign': 0,
'no-extra-semi': 0,
'no-floating-decimal': 0,
'no-multiple-empty-lines': 0,
'no-negated-condition': 0,
'no-undef': 0,
'no-warning-comments': 0,
'padded-blocks': 0,
'prefer-template': 0,
'react/jsx-closing-bracket-location': 0,
'react/jsx-indent-props': 0,
'react/no-danger': 0,
'operator-linebreak': 0
}
};