mirror of
https://codeberg.org/timelimit/timelimit-server-ui.git
synced 2025-10-02 17:09:14 +02:00
17 lines
327 B
JSON
17 lines
327 B
JSON
{
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint"],
|
|
"root": true,
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts"],
|
|
"rules": {
|
|
"@typescript-eslint/no-inferrable-types": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|