mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
26 lines
723 B
Text
26 lines
723 B
Text
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"rules": {
|
|
"camelcase": 0,
|
|
"no-multi-str": 0,
|
|
"no-empty": 0,
|
|
"quotes": 0,
|
|
"@typescript-eslint/no-var-requires": 0,
|
|
"@typescript-eslint/camelcase": 0,
|
|
"@typescript-eslint/member-delimiter-style": 0,
|
|
"@typescript-eslint/consistent-type-assertions": 0,
|
|
"@typescript-eslint/no-inferrable-types": 0,
|
|
"@typescript-eslint/no-explicit-any": 0,
|
|
"@typescript-eslint/no-non-null-assertion": 0,
|
|
"@typescript-eslint/ban-ts-ignore": 0
|
|
}
|
|
}
|