@kalimahapps/eslint-config
Version:
Comprehensive and configurable ESLint config for Vue 3 projects with TypeScript support
28 lines (25 loc) • 448 B
JavaScript
const error = {
'prevent-abbreviations': {
replacements: {
props: false,
prop: false,
attrs: false,
},
},
};
const warn = { 'prefer-string-replace-all': 'warn' };
const off = [
'no-array-for-each',
'no-array-reduce',
'no-keyword-prefix',
'prefer-set-has',
'no-array-callback-reference',
'require-post-message-target-origin',
'prefer-json-parse-buffer',
'expiring-todo-comments',
];
export default {
error,
warn,
off,
};