next-downloader-bot/apps/bot/eslint.config.js
2026-01-14 12:23:58 +03:00

18 lines
369 B
JavaScript

import { node } from '@repo/eslint-config/node';
/** @type {import("eslint").Linter.Config} */
export default [
...node,
{
ignores: ['**/types/**', '*.config.*'],
},
{
rules: {
'@typescript-eslint/naming-convention': 'off',
'unicorn/prevent-abbreviations': 'off',
'canonical/id-match': 'off',
'id-length': 'off',
},
},
];