-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
43 lines (43 loc) · 977 Bytes
/
.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
module.exports = {
env: {
browser: true,
},
extends: ['plugin:react/recommended', 'airbnb-typescript', 'plugin:prettier/recommended'],
parser: '@typescript-eslint/parser',
parserOptions: {
project: ['tsconfig.json'],
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 12,
sourceType: 'module',
},
plugins: ['react', '@typescript-eslint', 'import'],
rules: {
'react/jsx-filename-extension': [2, { extensions: ['.jsx', '.tsx'] }],
'import/no-extraneous-dependencies': ['off'],
'react/prop-types': ['off'],
semi: [2, 'always'],
'prettier/prettier': [
'error',
{
singleQuote: true,
printWidth: 120,
tabWidth: 2,
trailingComma: 'all',
jsxSingleQuote: true,
semi: true,
},
],
},
settings: {
'import/resolver': {
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
},
react: {
version: 'detect',
},
},
};