2024-11-29 19:00:05 +08:00
|
|
|
{
|
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
|
"plugins": [
|
|
|
|
|
"@typescript-eslint"
|
|
|
|
|
],
|
|
|
|
|
"extends": [
|
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
|
"plugin:prettier/recommended",
|
|
|
|
|
"prettier"
|
|
|
|
|
],
|
|
|
|
|
"env": {
|
|
|
|
|
"mocha": true
|
|
|
|
|
},
|
|
|
|
|
"rules": {
|
|
|
|
|
"@typescript-eslint/no-var-requires": "off",
|
|
|
|
|
"@typescript-eslint/ban-ts-comment": "off",
|
|
|
|
|
"@typescript-eslint/ban-ts-ignore": "off",
|
|
|
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
|
|
|
"@typescript-eslint/no-empty-function": "off",
|
2025-11-26 23:25:51 +08:00
|
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
|
|
|
"max-len": [0, 160, 2, { "ignoreUrls": true }]
|
2024-11-29 19:00:05 +08:00
|
|
|
}
|
|
|
|
|
}
|