-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.js
38 lines (38 loc) ยท 2.14 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
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
'airbnb',
'airbnb/hooks',
'plugin:react/recommended',
'plugin:import/recommended',
'plugin:prettier/recommended',
'eslint:recommended',
'prettier',
],
plugins: ['react', 'import', 'prettier'],
parser: '@babel/eslint-parser',
parserOptions: { sourceType: 'module' },
rules: {
'no-unused-vars': ['off'], // ์ฌ์ฉํ์ง ์๋ ๋ณ์๊ฐ ์์๋ ๋น๋์๋ฌ๊ฐ ๋๋ ๊ท์น ํด์
'no-console': ['off'], // ์ฝ์์ ์ฐ๋ฉด ์๋ฌ๊ฐ ๋๋ ๊ท์น ํด์
'react/function-component-definition': [2, { namedcomponents: 'arrow-function' }],
'react-hooks/exhaustive-deps': ['warn'], // hooks์ ์์กด์ฑ๋ฐฐ์ด์ด ์ถฉ๋ถํ์ง ์์๋ ๊ฐ์ ๋ก ์์กด์ฑ์ ์ถ๊ฐํ๋ ๊ท์น์ ์ํ
'react/jsx-props-no-spreading': [1, { custom: 'ignore' }], // props spreading์ ํ์ฉํ์ง ์๋ ๊ท์น ํด์
'react/prop-types': 0, // prop-types๋ฅผ ์ ์ธํด์ฃผ์ด์ผํ๋ ๊ท์น ํด์
'no-param-reassign': 0, // ํ๋ผ๋ฏธํฐ ๋ณ๊ฒฝ์ ํ์ฉํ์ง ์๋ ๊ท์น ํด์
'consistent-return': 0, // ํ์ดํ ํจ์์์ return์ด ์๋๋ ๊ท์น ํด์
'no-underscore-dangle': 0, // ํจ์ ์ด๋ฆ์ ์์ํ ๋ ์ธ๋๋ฐ๋ฅผ ์ฌ์ฉํ ์ ์๋ ๊ท์น ํด์
'no-useless-escape': 0, // ์ ๊ท์ ์ฌ์ฉ์ ๋ฌธ์ ๊ฐ ๋๋ ๊ท์น ํด์
'prefer-destructuring': ['error', { object: true, array: false }], // ๋ฐฐ์ด ์ธ๋ฑ์ค์ ์ ๊ทผ ์ ๋ฐ๋์ ๊ตฌ์กฐ๋ถํด ํ ๋น์ ์ฌ์ฉํด์ผํ๋ ๊ท์น ํด์
'react/jsx-filename-extension': [2, { extensions: ['.js', '.jsx', '.ts', '.tsx'] }],
'prettier/prettier': ['error', { endOfLine: 'auto' }],
'no-shadow': 0, // ๋ณ์๋ช
์ ์๋์์ ์ ํํ๋ ๊ท์น ํด์ ,
'react/no-array-index-key': 0, // array index๋ฅผ key๊ฐ์ผ๋ก ์ฌ์ฉํ ์ ์๋ ๊ท์น ํด์
'import/no-mutable-exports': 0, // var์ด๋ let๊ณผ ๊ฐ์ ๋ณ๊ฒฝ๊ฐ๋ฅํ ๊ฐ์ export๋ฅผ ๊ธ์งํ๋ ๊ท์น ํด์
'no-continue': 0, // continue๋ฅผ ์ฌ์ฉํ์ง ๋ชปํ๊ฒ ํ๋ ๊ท์น ํด์
'no-restricted-globals': 0, // global variable ์ฌ์ฉ์ ๋ง๋ ๊ท์น ํด์
},
};