-
Notifications
You must be signed in to change notification settings - Fork 3k
/
Copy path.eslintrc.js
63 lines (63 loc) ยท 1.67 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
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
module.exports = {
env: {
es6: true,
node: true,
'jest/globals': true
},
globals: {
expect: true,
it: true,
describe: true
},
root: true,
extends: ['@react-native', 'plugin:react-hooks/recommended', 'plugin:@typescript-eslint/recommended'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
experimentalObjectRestSpread: true,
jsx: true
},
sourceType: 'module'
},
plugins: ['react', 'react-native', 'jest', '@typescript-eslint'],
rules: {
'prettier/prettier': ['warn'],
'comma-dangle': ['error', 'never'],
'curly': 'off',
'eol-last': 'error',
'no-unused-expressions': 'off',
'max-len': ['warn', {code: 120, ignoreComments: true, ignoreStrings: true}],
'new-cap': 'off',
'no-mixed-operators': ['off'],
'no-trailing-spaces': 'off',
'no-undef': 'off',
'operator-linebreak': 'off',
'semi': ['error', 'always'],
'@typescript-eslint/ban-ts-comment': 1,
'@typescript-eslint/explicit-function-return-type': 0,
'@typescript-eslint/no-shadow': 0,
'@typescript-eslint/no-unused-vars': ['warn', {argsIgnorePattern: '^_'}],
'@typescript-eslint/no-use-before-define': 0,
'@typescript-eslint/no-var-requires': 0,
'react/jsx-tag-spacing': [
'error',
{
closingSlash: 'never',
beforeSelfClosing: 'never',
afterOpening: 'never',
beforeClosing: 'never'
}
],
'react/jsx-no-bind': [
'off',
{
ignoreRefs: true,
allowArrowFunctions: false,
allowBind: false
}
],
'react/jsx-uses-react': 2,
'react/jsx-uses-vars': 2,
'react-native/no-inline-styles': 1
}
};