Skip to content

Commit 8cd1127

Browse files
ignore analysis on lib*/test*/example* folders (#4910)
* Ignore www folder * ignore analysis on lib*/test*/example* folders
1 parent 318462e commit 8cd1127

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/eslintDefaultOptions.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ export const defaultOptions: ESLint.Options = {
9494
"vendor/",
9595
"tsconfig.json",
9696
".eslintrc*",
97-
"www/"
97+
"**/lib*/**",
98+
"**/test*/**",
99+
"**/example*/**"
98100
],
99101
"plugins": [],
100102
"parser": "@typescript-eslint/parser",

0 commit comments

Comments
 (0)