mirror of
https://github.com/Afilmory/afilmory
synced 2026-04-24 23:05:05 +00:00
20 lines
378 B
TypeScript
20 lines
378 B
TypeScript
import { defineConfig } from 'eslint-config-hyoban'
|
|
|
|
export default defineConfig(
|
|
{
|
|
formatting: false,
|
|
},
|
|
{
|
|
languageOptions: {
|
|
parserOptions: {
|
|
emitDecoratorMetadata: true,
|
|
experimentalDecorators: true,
|
|
},
|
|
},
|
|
rules: {
|
|
'unicorn/no-useless-undefined': 0,
|
|
'@typescript-eslint/no-unsafe-function-type': 0,
|
|
},
|
|
},
|
|
)
|