-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
49 lines (49 loc) · 1.27 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
module.exports = {
plugins: ["next-on-pages"],
extends: [
"@naporin0624/eslint-config",
"@naporin0624/eslint-config/react",
"plugin:jsx-a11y/strict",
"plugin:@next/next/recommended",
"plugin:next-on-pages/recommended",
],
rules: {
"no-void": "off",
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
"no-restricted-imports": ["error", { patterns: ["../"] }], // 相対 path で親をたどるのを禁止する
"@next/next/no-img-element": "off",
camelcase: ["error", { ignoreImports: true }],
"import/no-extraneous-dependencies": [
"error",
{
devDependencies: [
"**/*.dev.ts",
"**/*.test.ts",
"**/*.test.tsx",
"./*.config.js",
"./*.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",
},
},
{
files: ["**/_components/**"],
rules: {
"no-restricted-imports": "off",
},
},
],
};