wikipedia-game-solver/apps/api/.eslintrc.json

21 lines
404 B
JSON
Raw Permalink Normal View History

2024-08-09 23:51:41 +02:00
{
"root": true,
"extends": ["@repo/eslint-config"],
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"plugins": ["@typescript-eslint"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": true
}
2024-08-16 02:50:11 +02:00
},
{
2024-08-18 02:31:02 +02:00
"files": ["app/controllers/**/*.ts"],
2024-08-16 02:50:11 +02:00
"rules": {
"@typescript-eslint/naming-convention": "off"
}
2024-08-09 23:51:41 +02:00
}
]
}