-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
34 lines (34 loc) · 1.05 KB
/
.eslintrc
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
{
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"simple-import-sort",
"prettier",
"@typescript-eslint"
],
"parser": "@typescript-eslint/parser",
"rules": {
"no-console": "off",
"no-unused-vars": "off", // do not use
"prettier/prettier": "warn",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off", // 함수 자료형 검사
"@typescript-eslint/no-empty-interface": "off", // 빈 인터페이스 검사
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "off", // any 타입 검사
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
], // 미사용 변수
"@typescript-eslint/no-var-requires": "off"
}
}