Skip to content

Commit 376a16e

Browse files
author
calvin
committed
feat: config file change
1 parent b22d3dc commit 376a16e

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed
Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
11
// @ts-check
22

33
import eslint from "@eslint/js";
4-
import tseslint from "typescript-eslint";
54
import eslintConfigPrettier from "eslint-config-prettier";
5+
import tseslint from "typescript-eslint";
66

77
export default tseslint.config(
88
eslint.configs.recommended,
99
...tseslint.configs.strict,
1010
...tseslint.configs.stylistic,
1111
eslintConfigPrettier,
1212
{
13-
ignores: ["build"],
13+
ignores: [
14+
"node_modules/**",
15+
"build/**",
16+
"dist/**",
17+
"**/target/**",
18+
"**/*.class",
19+
".eslintignore",
20+
],
1421
},
1522
);

0 commit comments

Comments
 (0)