generated from napolab/typescript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.cjs
59 lines (58 loc) · 1.53 KB
/
.eslintrc.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/** @type {import("eslint").Linter.Config} */
const config = {
parserOptions: {
project: "./tsconfig.eslint.json",
},
extends: ["@naporin0624/eslint-config", "@naporin0624/eslint-config/react"],
rules: {
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
"no-restricted-imports": ["error", { patterns: ["src/"] }],
"import/no-extraneous-dependencies": [
"error",
{
devDependencies: [
"**/*.dev.ts",
"**/*.test.ts",
"**/*.test.tsx",
"./*.config.js",
"./*.config.cjs",
"./*.config.mjs",
"**/*.dev.mjs",
"./*.config.ts",
"**/*.stories.tsx",
"**/*.story.tsx",
"vitest-*",
],
},
],
},
overrides: [
{
files: ["**/__tests__/**/*.[t]s?(x)", "**/?(*.)+(spec|test).[t]s?(x)"],
extends: ["plugin:jest-dom/recommended", "plugin:testing-library/react"],
rules: {
"react/jsx-no-bind": "off",
"no-restricted-imports": "off",
"testing-library/no-unnecessary-act": "off",
},
},
{
files: ["**/*.stories.tsx", "**/*.story.tsx"],
extends: ["plugin:storybook/recommended"],
rules: {
"react/jsx-no-bind": "off",
"no-restricted-imports": "off",
"import/no-extraneous-dependencies": "off",
},
},
{
files: ["types/*.d.ts"],
rules: {
"import/no-extraneous-dependencies": "off",
"no-restricted-imports": "off",
}
}
],
};
module.exports = config;