UNPKG

@alexlit/lint-kit

Version:

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

27 lines (21 loc) 369 B
module.exports = { plugins: ['sql'], rules: { 'sql/format': [ 'warn', { ignoreExpressions: false, ignoreInline: false, ignoreStartWithNewLine: true, ignoreTagless: false, }, { spaces: 2 }, ], 'sql/no-unsafe-query': [ 'warn', { allowLiteral: false, }, ], }, };