eslint-config-valantic
Version:
The default ESLint config of valantic.
16 lines (14 loc) • 348 B
JavaScript
import prettier from './prettier.js';
/**
* This config should be used on top of any of the other configs, to disable Prettier handle rules.
*/
export default [
...prettier,
{
rules: {
'vue/html-self-closing': 'off',
'vue/object-curly-newline': 'off',
'vue/singleline-html-element-content-newline': 'off',
}
}
];