@marviuz/eslint-config
Version:
Comprehensive ESLint configuration for JavaScript, TypeScript, React, and Next.js projects
13 lines (12 loc) • 326 B
JavaScript
export default {
'no-useless-computed-key': 'warn',
'no-useless-rename': 'warn',
'no-var': 'error',
'object-shorthand': 'warn',
'prefer-const': 'warn',
'prefer-numeric-literals': 'error',
'prefer-rest-params': 'error',
'prefer-spread': 'error',
'prefer-template': 'warn',
'symbol-description': 'error',
};