- Add logger utility (winston-based) - Add apiKeyAuth middleware for API key authentication - Add fieldPermissions middleware for field-level access control - Add Swagger/OpenAPI configuration and integration - Refactor DTOs with Zod validation schemas: - feature-flag.dto.ts - terminal.dto.ts - transaction.dto.ts - ai.dto.ts - Add error classes (AppError, UnauthorizedError, ForbiddenError, etc.) - Add AuthenticatedRequest type for erp-core compatibility - Add ESLint configuration Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
717 B
JSON
28 lines
717 B
JSON
{
|
|
"env": {
|
|
"es2022": true,
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
"no-console": "off"
|
|
},
|
|
"ignorePatterns": ["dist/", "node_modules/"]
|
|
}
|