From dcef4b554f53f056180a08e40a2dce0b85bf2360 Mon Sep 17 00:00:00 2001 From: Northword Date: Sat, 17 Jun 2023 22:05:49 +0800 Subject: [PATCH] chore: update eslint ignore patterns --- .eslintrc.json | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 2c2f69c..5aa2af8 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -23,17 +23,11 @@ "@typescript-eslint/no-non-null-assertion": "off" }, "ignorePatterns": [ + "**/builds/**", "**/dist/**", "**/node_modules/**", - "**/abbrevIso*", - "**/example*", - "**/*.bak", - "coverage/**", - "docs-shared/lib/**", - "packages/*/assets/**", - "packages/*/lib/**", - "!.vuepress/**", - "**/.vuepress/.cache/**", - "**/.vuepress/.temp/**" + "**/scripts/**", + "**/*.js", + "**/*.bak" ] }