diff options
author | Valentin Popov <info@valentineus.link> | 2020-06-18 00:10:47 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-18 00:10:47 +0300 |
commit | a7aeded00994c56e4a6f24f53944b159be3a253d (patch) | |
tree | 672e1599d2e3598cf28aa90b1db719c620323e6b /src/typescript.ts | |
parent | adf39edc06ca27c1179751601ad56ea7b89c9ab4 (diff) | |
parent | 2b9c6380f071a3fc6379a41259d9f5198d02be7b (diff) | |
download | eslint-config-a7aeded00994c56e4a6f24f53944b159be3a253d.tar.xz eslint-config-a7aeded00994c56e4a6f24f53944b159be3a253d.zip |
Merge pull request #5 from valentineus/release/2020-06-17
release/2020-06-17
Diffstat (limited to 'src/typescript.ts')
-rw-r--r-- | src/typescript.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/typescript.ts b/src/typescript.ts index 6295159..33fb125 100644 --- a/src/typescript.ts +++ b/src/typescript.ts @@ -3,7 +3,6 @@ import rDefault from "./rules/typescript/default.json"; module.exports = { "extends": [ "./javascript", - "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/recommended-requiring-type-checking", "plugin:import/typescript", @@ -15,5 +14,7 @@ module.exports = { "plugins": [ "@typescript-eslint", ], - "rules": { ...rDefault }, + "rules": { + ...rDefault, + }, }; |