-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
108 lines (108 loc) · 2.77 KB
/
.eslintrc.json
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"globals": {
"NodeJS": true
},
"env": {
"node": true,
"browser": true,
"es2021": true,
"jest": true
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
},
"alias": {
"map": [["@", "./src"]],
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
},
"extends": [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:react/recommended",
"airbnb-base",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"eslint-config-prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["react", "@typescript-eslint", "prettier"],
"rules": {
"react/jsx-filename-extension": [2, { "extensions": [".js", ".jsx", ".ts", ".tsx"] }],
"react/react-in-jsx-scope": "off", // import React from 'react' 무시
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off",
"import/no-cycle": "off",
"import/no-named-as-default": "off",
"import/order": [
// import 정렬 및 구분
"error",
{
"groups": [
"builtin",
"external",
"internal",
["sibling", "parent", "index"],
"type",
"unknown"
],
"pathGroups": [
{
"pattern": "{react*,react*/**}",
"group": "external",
"position": "before"
},
{
"pattern": "./**/index.tsx",
"group": "internal"
},
{
"pattern": "./**/style.tsx",
"group": "unknown"
},
{
"pattern": "./**/*.css",
"group": "unknown"
}
],
"newlines-between": "always"
}
],
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never",
"css": "never"
}
],
"@typescript-eslint/no-unused-vars": ["error"],
"@typescript-eslint/explicit-module-boundary-types": "off", // module return type 명시 X
"no-console": "error",
"no-debugger": "error",
"no-unused-vars": "error", // no-unused-vars : 변수 선언 후 반드시 사용 (interface 임시로 변수 선언하고플 때 해결책)
"no-param-reassign": ["error", { "props": false }],
"no-unused-expressions": [
// 사용 안하는 표현 (예외 제외 Error 표시)
"error",
{
"allowTernary": true, // a ? b : 0 (삼항 연산자)
"allowShortCircuit": true // a || b
}
],
"prettier/prettier": "error"
}
}