2021-07-01 11:12:37 +00:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"es2021": true
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"semistandard",
|
|
|
|
"plugin:@typescript-eslint/recommended"
|
|
|
|
],
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 12,
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
"@typescript-eslint"
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
|
|
"@typescript-eslint/explicit-module-boundary-types": [
|
|
|
|
"warn",
|
|
|
|
{
|
|
|
|
"allowArgumentsExplicitlyTypedAsAny": true
|
|
|
|
}
|
|
|
|
]
|
2021-07-30 14:20:56 +00:00
|
|
|
},
|
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
"files": ["*.test.ts", "test/*.ts"],
|
|
|
|
"rules": {
|
|
|
|
"no-unused-expressions": "off",
|
|
|
|
"no-prototype-builtins":"off"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2021-07-01 11:12:37 +00:00
|
|
|
}
|