Skip to content

Commit 37700ef

Browse files
committed
ignore directories for linting
1 parent 15ab731 commit 37700ef

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

tools/linters/eslint.config.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,14 @@ const { defineConfig } = require("eslint/config");
33

44
module.exports = defineConfig([
55
{
6-
ignores: ["!/tools/linters/.eslint.config.js", "!/tools/linters/.stylelintrc.json"],
6+
ignores: [
7+
"!/tools/linters/eslint.config.js",
8+
"!/tools/linters/.stylelintrc.json",
9+
"!/js/**",
10+
"!/css/**",
11+
"!/webfonts/**",
12+
"!/icons/**"
13+
],
714
languageOptions: {
815
ecmaVersion: 2015,
916
sourceType: "module"

0 commit comments

Comments
 (0)