Files
afilmory/be/eslint.config.ts
Innei 89f2825a1b feat(auth): implement social authentication support and refactor related components
- Added social authentication buttons to the registration and login flows.
- Updated API endpoints for tenant registration and session management.
- Refactored authentication client to unify global and tenant authentication handling.
- Removed deprecated tenant authentication module and related configurations.
- Enhanced onboarding and settings UI to accommodate new social provider configurations.

Signed-off-by: Innei <tukon479@gmail.com>
2025-11-07 02:16:00 +08:00

22 lines
476 B
TypeScript

import { defineConfig } from 'eslint-config-hyoban'
export default defineConfig(
{
formatting: false,
},
{
languageOptions: {
parserOptions: {
emitDecoratorMetadata: true,
experimentalDecorators: true,
},
},
rules: {
'unicorn/no-array-callback-reference': 'off',
'unicorn/no-abusive-eslint-disable': 0,
'unicorn/no-useless-undefined': 0,
'@typescript-eslint/no-unsafe-function-type': 0,
},
},
)