forked from onmotion/react-native-autocomplete-dropdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
48 lines (48 loc) · 1.25 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
module.exports = {
root: true,
extends: ['@react-native-community', 'plugin:prettier/recommended', 'prettier'],
plugins: ['react', 'unused-imports', 'prettier'],
parserOptions: {
ecmaFeatures: {
jsx: true
}
},
rules: {
'no-unused-vars': 'off', // or "@typescript-eslint/no-unused-vars": "off",
'unused-imports/no-unused-imports': 'error',
'unused-imports/no-unused-vars': [
'warn',
{ vars: 'all', varsIgnorePattern: '^_', args: 'after-used', argsIgnorePattern: '^_' }
],
'prettier/prettier': [
'error',
{
printWidth: 110,
arrowParens: 'avoid',
bracketSameLine: true,
bracketSpacing: true,
singleQuote: true,
trailingComma: 'none',
tabWidth: 2,
useTabs: false,
semi: false
}
],
semi: 'off',
'comma-dangle': ['warn', 'never'],
'react-native/no-inline-styles': 'off',
'react-hooks/exhaustive-deps': 'off'
},
overrides: [
{
files: ['*.ts', '*.tsx', '*.js', '*.jsx'],
rules: {
'@typescript-eslint/no-shadow': ['error'],
'no-shadow': 'off',
'no-undef': 'off',
'react-hooks/exhaustive-deps': 'warn',
'react-native/no-unused-styles': 'warn'
}
}
]
}