- Added Redis service to both docker-compose files for local development and production environments. - Updated bot configuration to utilize the Grammy framework, replacing Telegraf. - Implemented graceful shutdown for the bot, ensuring proper resource management. - Refactored bot commands and removed deprecated message handling logic. - Enhanced environment variable management for Redis connection settings. - Updated dependencies in package.json to include new Grammy-related packages.
15 lines
352 B
JavaScript
15 lines
352 B
JavaScript
import { typescript } from '@repo/eslint-config/typescript';
|
|
|
|
/** @type {import("eslint").Linter.Config} */
|
|
export default [
|
|
...typescript,
|
|
{
|
|
ignores: ['**/types/**', '*.config.*'],
|
|
rules: {
|
|
'@typescript-eslint/naming-convention': 'off',
|
|
'unicorn/prevent-abbreviations': 'off',
|
|
'canonical/id-match': 'off',
|
|
},
|
|
},
|
|
];
|