-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
40 lines (40 loc) · 1.34 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
module.exports = {
root: true,
extends: [
'@react-native',
'plugin:prettier/recommended',
'plugin:testing-library/react',
'plugin:import/typescript',
],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'only-warn', 'eslint-plugin-import', 'testing-library'],
overrides: [
{
files: ['*.ts', '*.tsx'],
rules: {
'@typescript-eslint/no-shadow': ['error'],
'no-shadow': 'off',
'no-undef': 'off',
'no-console': 'warn',
'max-classes-per-file': 'warn',
'react-native/no-inline-styles': 'off',
'react/jsx-curly-brace-presence': 'error',
'react/jsx-closing-bracket-location': 'error',
'import/no-duplicates': 'error',
'no-useless-rename': 'error',
'import/first': 'error',
'import/prefer-default-export': 'error',
'arrow-body-style': ['error', 'as-needed'],
'no-unused-expressions': 'error',
'import/no-cycle': 'off',
'prefer-destructuring': 'error',
'prefer-const': 'error',
'react/destructuring-assignment': 'error',
'testing-library/prefer-screen-queries': 'off',
'object-shorthand': 'error',
'@typescript-eslint/quotes': ['error', 'single'],
'react/no-unstable-nested-components': ['error', { allowAsProps: true }],
},
},
],
};