UNPKG

@alexlit/lint-kit

Version:

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

17 lines (15 loc) 370 B
module.exports = { overrides: [ { extends: ['plugin:vitest/legacy-all'], files: ['*.{test,spec}.{js,ts}'], plugins: ['vitest'], rules: { 'vitest/no-conditional-in-test': 'off', 'vitest/no-conditional-tests': 'off', 'vitest/no-hooks': 'off', 'vitest/require-to-throw-message': 'off', }, }, ], };