From b24eb47dbd8482db4cd543093096d72a5b617a3d Mon Sep 17 00:00:00 2001 From: nnmrts Date: Thu, 18 Jun 2020 19:32:13 +0200 Subject: [PATCH] feat: :sparkles: add ignore patterns now vscode shouldn't freeze anymore when you open a big file in these directories --- index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 0904f69..7e55f60 100644 --- a/index.js +++ b/index.js @@ -14,5 +14,6 @@ module.exports = { "./rules/strict.js", "./rules/style.js", "./rules/variables.js" - ] + ], + ignorePatterns: ["dist/**", "node_modules/**"] };