feat(typescript): Removed overrides

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-13 23:42:58 +04:00
parent 6c7cf2ef09
commit 5b981c9788
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 0 additions and 12 deletions

View File

@ -1 +0,0 @@
{}

View File

@ -1,5 +1,4 @@
import rDefault from "./rules/typescript/default.json";
import rOverrides from "./rules/typescript/overrides.json";
module.exports = {
"extends": [
@ -9,19 +8,9 @@ module.exports = {
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:import/typescript",
],
"overrides": [
{
files: [
"*.ts",
"*.tsx",
],
rules: { ...rOverrides },
},
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"import",
],
"rules": { ...rDefault },
};