UNPKG

@kalimahapps/eslint-config

Version:

Comprehensive and configurable ESLint config for Vue 3 projects with TypeScript support

15 lines 232 B
const error = { 'consistent-type-imports': 'error' }; const warn = { 'semi': 'warn', 'indent': ['tab'], 'ban-ts-comment': { 'ts-ignore': 'allow-with-description', }, }; const off = []; export default { error, warn, off, };