UNPKG

@alexlit/lint-kit

Version:

Preset of configuration files and dependencies for linting web applications (designed for Vue.js with TypeScript)

18 lines (14 loc) 272 B
module.exports = { overrides: [ { files: ['**/*.{test,spec}.{js,ts}'], rules: { 'more/no-numeric-endings-for-variables': 'off', }, }, ], plugins: ['more'], rules: { 'more/no-numeric-endings-for-variables': 'error', }, };