Assist_Design/apps/bff/.eslintrc.json
T. Narantuya a95ec60859 Refactor address management and update related services for improved clarity and functionality
- Updated address retrieval in user service to replace billing info with a dedicated address method.
- Adjusted API endpoints to use `PATCH /api/me/address` for address updates instead of billing updates.
- Enhanced documentation to reflect changes in address management processes and API usage.
- Removed deprecated types and services related to billing address handling, streamlining the codebase.
2025-09-17 18:43:43 +09:00

30 lines
656 B
JSON

{
"root": true,
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"env": { "es2021": true, "node": true },
"overrides": [
{
"files": ["src/core/**/*.ts"],
"rules": {
"no-restricted-imports": [
"error",
{ "patterns": ["@bff/infra/*", "@bff/modules/*", "@bff/integrations/*"] }
]
}
},
{
"files": ["src/integrations/**/*.ts"],
"rules": {
"no-restricted-imports": [
"error",
{ "patterns": ["@bff/modules/*"] }
]
}
}
]
}