- Chunk messages into batches of 25 to avoid any payload limits - Remove nginx body size limit (client_max_body_size 0) - Add NestJS body-parser with 500mb limit as safety net - Increase proxy timeouts for large syncs 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
820 B
JSON
26 lines
820 B
JSON
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2022,
|
|
"sourceType": "module",
|
|
"project": "./tsconfig.json",
|
|
"ecmaFeatures": { "jsx": true }
|
|
},
|
|
"plugins": ["@typescript-eslint", "react", "react-hooks"],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:react/recommended",
|
|
"plugin:react-hooks/recommended"
|
|
],
|
|
"settings": {
|
|
"react": { "version": "detect" }
|
|
},
|
|
"rules": {
|
|
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }],
|
|
"@typescript-eslint/no-explicit-any": "warn",
|
|
"react/react-in-jsx-scope": "off"
|
|
},
|
|
"ignorePatterns": ["**/*.test.ts", "**/*.test.tsx", "**/__tests__/**", "dist", "node_modules", "*.d.ts", "*.js"]
|
|
}
|