awary/server/.eslintrc.json

13 lines
348 B
JSON
Raw Normal View History

2025-06-11 09:50:52 +02:00
{
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"root": true,
"rules": {
"indent": ["error", "tab"],
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "error",
"object-curly-spacing": "error"
}
}