UNPKG

@sidekick-coder/db

Version:

Cli Tool to manipulate data from diferent sources

22 lines (19 loc) 625 B
import { addIgnoreFile, config as sidekick } from '@sidekick-coder/eslint-config' import { resolve } from 'path' import path from 'node:path' import { fileURLToPath } from 'node:url' const __filename = fileURLToPath(import.meta.url) const __dirname = path.dirname(__filename) export default [ ...sidekick, addIgnoreFile(resolve(__dirname, '.gitignore')), { rules: { 'linebreak-style': 'off', '@typescript-eslint/no-unused-vars': [ 'error', { argsIgnorePattern: '^_', caughtErrors: 'none' }, ], }, }, ]