Remove dependency to external eslintrc

This commit is contained in:
Franck 2022-01-03 11:52:09 +11:00
parent 4f76bfee52
commit cdd0b6ed6d
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
1 changed files with 24 additions and 2 deletions

View File

@ -1,5 +1,27 @@
{
"env": {
"es6": true,
"node": true,
"mocha": true,
"browser": true
},
"extends": [
"../../.eslintrc.json"
]
"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"
}
}