mirror of
https://github.com/Afilmory/afilmory
synced 2026-02-01 22:48:17 +00:00
- 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>
22 lines
476 B
TypeScript
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,
|
|
},
|
|
},
|
|
)
|