diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 22:42:58 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 22:42:58 +0300 |
commit | 5b981c978875f8dd9f4be091631f38783d973eff (patch) | |
tree | 391192905a3f1b3235fdb34dbadd1b5a26bcaff8 | |
parent | 6c7cf2ef0997913a48051519961c867591307744 (diff) | |
download | eslint-config-5b981c978875f8dd9f4be091631f38783d973eff.tar.xz eslint-config-5b981c978875f8dd9f4be091631f38783d973eff.zip |
feat(typescript): Removed overrides
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | src/rules/typescript/overrides.json | 1 | ||||
-rw-r--r-- | src/typescript.ts | 11 |
2 files changed, 0 insertions, 12 deletions
diff --git a/src/rules/typescript/overrides.json b/src/rules/typescript/overrides.json deleted file mode 100644 index 0967ef4..0000000 --- a/src/rules/typescript/overrides.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/src/typescript.ts b/src/typescript.ts index b24cbed..ace7ad7 100644 --- a/src/typescript.ts +++ b/src/typescript.ts @@ -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 }, }; |