-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
76 lines (76 loc) · 3.07 KB
/
.eslintrc.js
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
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: ["plugin:react/recommended", "airbnb"],
globals: {
Atomics: "readonly",
SharedArrayBuffer: "readonly",
JSX: true,
},
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: "module",
},
plugins: ["react", "@typescript-eslint", "react-hooks"],
rules: {
quotes: ["error", "double"], //더블 쿼터 사용
"@typescript-eslint/quotes": ["error", "double"], //더블 쿼터 사용
"no-unused-vars": "off", //사용안한 변수 경고 중복
"spaced-comment": "off", //주석을 뒤에 쓰지 말라는 경고
"@typescript-eslint/no-unused-vars": "warn", //사용안한 변수는 경고
"jsx-a11y/control-has-associated-label": "off", // 상호작용하는 엘리먼트에 label을 넣는다
"react/no-array-index-key": "off", // key값으로 index를 사용할수 있다.
"comma-dangle": "off", // 마지막에 , 을 넣어주지 않는다.
"arrow-body-style": "off", //화살표 함수 안에 return을 사용 할 수 있다.
"react/no-unescaped-entities": "off", //문자열 내에서 " ' > } 허용
"react/prop-types": "off", //proptypes를 사용하지 않는다.
"object-curly-newline": "off", // { 다음 줄 바꿈을 강제로 사용하지 않는다.
"react/jsx-one-expression-per-line": "off", //한라인에 여러개의 JSX를 사용 할 수 있다.
"implicit-arrow-linebreak": "off", // 화살표 함수 다음에 줄 바꿈을 사용할 수 있다.
"no-shadow": "off", //파일 내에서 중복 이름을 사용 할 수 있다.
"operator-linebreak": "off", //연산자 다음 줄 바꿈을 사용 할 수 있다.
"react/react-in-jsx-scope": "off", // jsx를 사용하여도 React를 꼭 import 하지 않아도 된다.
"react/jsx-props-no-spreading": "off", //props를 스프래드 할 수 있다.
"jsx-a11y/anchor-is-valid": "off", // next js에서는 a에 href없이 사용
"global-require": "off", //함수 내에서 require 사용가능
"no-use-before-define": "off", // 선언전에 사용하지 말라,
"import/prefer-default-export": "off", //export default 권장
"no-param-reassign": "off", //param assign 하지 않기
"jsx-a11y/label-has-associated-control": "off",
"no-invalid-css": "off",
"no-confusing-arrow": "off",
"react/jsx-curly-newline": "off",
indent: "off",
"react/jsx-filename-extension": [
1,
{ extensions: [".js", ".jsx", ".tsx"] }, //jsx사용가능한 확장자 설정
],
"import/extensions": [
"error",
"ignorePackages",
{
js: "never",
jsx: "never",
ts: "never",
tsx: "never",
}, //import 시 확장자명은 사용하지 않는다.
],
"react/require-default-props": "off",
"consistent-return": "off",
"react-hooks/exhaustive-deps": "warn",
"no-alert": "off",
},
settings: {
"import/resolver": {
node: {
extensions: [".js", ".jsx", ".ts", ".tsx", ".d.ts"],
},
},
},
};