Configs TS, Docker, EsLint

This commit is contained in:
raveline
2026-04-13 21:39:11 +02:00
parent 3d72b85e6b
commit 79a8db94f3
5 changed files with 105 additions and 23 deletions

View File

@@ -30,6 +30,10 @@ export default tseslint.config(
'@typescript-eslint/no-floating-promises': 'warn',
'@typescript-eslint/no-unsafe-argument': 'warn',
"prettier/prettier": ["error", { endOfLine: "auto" }],
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
},
},
);