From 74f788b8edd708d27e32a784fde758ce2895f847 Mon Sep 17 00:00:00 2001 From: Daniel Cassidy Date: Tue, 3 Nov 2020 03:12:02 +0000 Subject: [PATCH] style: apply prettier code style --- index.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/index.ts b/index.ts index 0a8a882a..df959a22 100644 --- a/index.ts +++ b/index.ts @@ -171,11 +171,7 @@ const config: Linter.Config = { } }, { - files: [ - "test.{js,jsx,ts,tsx}", - "*.test.{js,jsx,ts,tsx}", - "*.config.{js,jsx,ts,tsx}" - ], + files: ["test.{js,jsx,ts,tsx}", "*.test.{js,jsx,ts,tsx}", "*.config.{js,jsx,ts,tsx}"], rules: { "no-restricted-imports": "off" } @@ -225,7 +221,7 @@ const config: Linter.Config = { "no-restricted-imports": [ "error", { - "patterns": ["**/*.config", "**/*.test", "**/test"] + patterns: ["**/*.config", "**/*.test", "**/test"] } ], "no-return-await": "error",