mirror of
https://github.com/alangrainger/immich-public-proxy.git
synced 2024-12-28 03:41:58 +00:00
27 lines
662 B
Text
27 lines
662 B
Text
|
{
|
||
|
"root": true,
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"env": { "node": true },
|
||
|
"plugins": [
|
||
|
"@typescript-eslint"
|
||
|
],
|
||
|
"extends": [
|
||
|
"standard",
|
||
|
"eslint:recommended",
|
||
|
"plugin:@typescript-eslint/eslint-recommended",
|
||
|
"plugin:@typescript-eslint/recommended"
|
||
|
],
|
||
|
"parserOptions": {
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"rules": {
|
||
|
"no-new": 0,
|
||
|
"no-unused-vars": "off",
|
||
|
"@typescript-eslint/no-var-requires": "off",
|
||
|
"@typescript-eslint/no-unused-vars": ["error", { "args": "none" }],
|
||
|
"@typescript-eslint/ban-ts-comment": "off",
|
||
|
"no-prototype-builtins": "off",
|
||
|
"@typescript-eslint/no-empty-function": "off"
|
||
|
}
|
||
|
}
|