eslint-config-valantic
Version:
The default ESLint config of valantic.
23 lines (22 loc) • 600 B
JavaScript
/**
* This config should be used on top of any of the other configs, to disable Prettier handle rules.
*/
export default [
{
rules: {
'arrow-body-style': 'off',
'arrow-parens': 'off',
'function-paren-newline': 'off',
'implicit-arrow-linebreak': 'off',
'lines-around-comment': 'off',
'no-confusing-arrow': 'off',
'no-extra-parens': 'off',
'object-curly-newline': 'off',
'operator-linebreak': 'off',
'quote-props': 'off',
'space-before-function-paren': 'off',
'wrap-iife': 'off',
'wrap-regex': 'off',
},
},
];