This commit is contained in:
Felicio Mununga 2023-11-08 08:37:31 +01:00
parent 48cfb2ad89
commit 68046a8c2e
No known key found for this signature in database
GPG Key ID: C4736C7AEBA55BE5
2 changed files with 3 additions and 7 deletions

View File

@ -1,14 +1,10 @@
{
"env": {
"es6": true,
"node": true,
"mocha": true,
"browser": true
},
"extends": [
"plugin:@typescript-eslint/recommended",
"eslint:recommended"
],
"extends": ["plugin:@typescript-eslint/recommended", "eslint:recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
@ -19,7 +15,7 @@
"@typescript-eslint/no-explicit-any": "off",
"no-redeclare": "off",
"no-unused-vars": "off",
"prefer-const": ["error", {"destructuring": "all"}],
"prefer-const": ["error", { "destructuring": "all" }],
"semi": ["error", "never"],
"no-extra-semi": "off",
"@typescript-eslint/no-extra-semi": "off"

View File

@ -7,7 +7,7 @@
"strict": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"target": "es6",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node"
}