From 5b981c978875f8dd9f4be091631f38783d973eff Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 13 Feb 2020 23:42:58 +0400 Subject: feat(typescript): Removed overrides Signed-off-by: Valentin Popov --- src/typescript.ts | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/typescript.ts') 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 }, }; -- cgit v1.2.3