2021-12-21 15:17:23 +11:00
|
|
|
{
|
2022-01-03 11:52:09 +11:00
|
|
|
"env": {
|
|
|
|
"es6": true,
|
|
|
|
"node": true,
|
|
|
|
"mocha": true,
|
|
|
|
"browser": true
|
|
|
|
},
|
2021-12-21 15:17:23 +11:00
|
|
|
"extends": [
|
2022-01-03 11:52:09 +11:00
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
"eslint:recommended"
|
|
|
|
],
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"parserOptions": {
|
|
|
|
"project": "./tsconfig.json",
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
|
|
"no-redeclare": "off",
|
|
|
|
"no-unused-vars": "off",
|
|
|
|
"prefer-const": ["error", {"destructuring": "all"}],
|
|
|
|
"semi": ["error", "never"],
|
|
|
|
"no-extra-semi": "off",
|
|
|
|
"@typescript-eslint/no-extra-semi": "off"
|
|
|
|
}
|
2021-12-21 15:17:23 +11:00
|
|
|
}
|