-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.cjs
58 lines (58 loc) · 1.66 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
module.exports = {
root: true,
extends: [
"next",
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/recommended",
"plugin:storybook/recommended",
"prettier",
],
ignorePatterns: [".eslintrc.cjs", "public", "*.config.ts"],
plugins: ["simple-import-sort"],
rules: {
"import/named": "off",
"simple-import-sort/imports": "error", // import 순서
"simple-import-sort/exports": "error", // export 순서
"@typescript-eslint/naming-convention": [
// 네이밍 컨벤션
"error",
{
format: ["camelCase", "UPPER_CASE", "PascalCase"],
selector: "variable",
leadingUnderscore: "allow",
},
{
format: ["camelCase", "PascalCase"],
selector: "function",
},
{
format: ["PascalCase"],
selector: "interface",
},
{
format: ["PascalCase"],
selector: "typeAlias",
},
],
"react/jsx-curly-brace-presence": [
// props나 children 에 중괄호를 넣을건지 여부
"error",
{
props: "never", // never: 불필요하면 안넣는다
children: "never",
},
],
"react/function-component-definition": [
// 함수 정의 컨벤션
"error",
{
namedComponents: "function-declaration",
unnamedComponents: "arrow-function",
},
],
"import/no-default-export": "off", // default export 금지 설정
"react/react-in-jsx-scope": "off", // jsx를 쓸 때 React가 scope 에 있어야 하는지 여부
"react-hooks/exhaustive-deps": "off", // React Hook useEffect의 의존성 배열 검사 비활성화
},
};