-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.ts
78 lines (77 loc) · 1.94 KB
/
.eslintrc.ts
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
module.exports = {
root: true,
env: {
browser: true,
node: true,
},
extends: [
'airbnb',
'prettier',
'eslint:recommended',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
],
settings: {
'import/extensions': ['.js', '.jsx', '.ts', '.tsx'],
'import/resolver': {
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
},
},
plugins: ['react', 'prettier', '@typescript-eslint'],
rules: {
// allow jsx syntax in js files (for next.js project)
'react/jsx-filename-extension': [
2,
{ extensions: ['.js', '.jsx', '.ts', '.tsx'] },
], // should add ".ts" if typescript project
'prettier/prettier': [
'error',
{
singleQuote: true,
semi: true,
useTabs: false,
tabWidth: 2,
printWidth: 80,
bracketSpacing: true,
arrowParens: 'avoid',
endOfLine: 'auto',
},
],
'import/extensions': [
'error',
'ignorePackages',
{
ts: 'never',
tsx: 'never',
js: 'never',
jsx: 'never',
mjs: 'never',
},
],
'react/function-component-definition': [
2,
{
namedComponents: 'arrow-function',
unnamedComponents: 'arrow-function',
},
],
// suppress errors for missing 'import React' in files
'react/react-in-jsx-scope': 'off',
'arrow-body-style': ['error', 'always'],
'import/prefer-default-export': 'off',
'no-param-reassign': [2, { props: false }],
'no-underscore-dangle': 'off',
'prefer-regex-literals': 'off',
'no-use-before-define': 'off',
'no-useless-concat': 'off',
'react/jsx-props-no-spreading': 'off', // 뭔지 찾아볼거
'@typescript-eslint/no-var-requires': 0, // 뭔지 찾아볼거
},
parserOptions: {
parser: '@typescript-eslint/parser',
},
};