-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc.js
42 lines (42 loc) · 951 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
module.exports = {
env: {
'react-native/react-native': true,
},
extends: [
'plugin:react/recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:react-hooks/recommended',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2020,
sourceType: 'module',
},
settings: {
react: {
version: 'detect',
},
},
plugins: ['@typescript-eslint', 'prettier', 'react', 'react-native'],
ignorePatterns: ['dist/*'],
rules: {
semi: ['error', 'never'],
'linebreak-style': ['error', 'unix'],
'react/display-name': 'off',
'prefer-const': 'error',
'react/self-closing-comp': [
'error',
{
component: true,
html: true,
},
],
'react/react-in-jsx-scope': 'off',
'prettier/prettier': 'error',
'@typescript-eslint/no-unused-vars': ['error'],
curly: [2, 'all'],
},
}