next-downloader-bot/apps/bot/eslint.config.js
2025-08-15 13:06:04 +03:00

17 lines
343 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',
},
},
];