forked from boostcamp-2020/Project08-A-Styled-Map-Admin-Tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
26 lines (26 loc) · 824 Bytes
/
.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
{
"extends": [
"react-app",
"airbnb",
"prettier",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": ["prettier", "@typescript-eslint"],
"parser": "@typescript-eslint/parser",
"rules": {
"prettier/prettier": ["error", { "endOfLine": "auto" }],
"react/jsx-filename-extension": [1, { "extensions": [".tsx"] }],
"import/no-unresolved": "off",
"import/extensions": "off",
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": ["error"],
"react-hooks/exhaustive-deps": "off",
"react/require-default-props": "off",
"import/order": "off",
"import/prefer-default-export": "off",
"no-shadow": "off",
"no-empty-function": "off",
"@typescript-eslint/no-empty-function": "off"
}
}