2023-04-12 19:15:38 +05:30
|
|
|
{
|
2023-11-06 19:21:37 +05:30
|
|
|
"env": {
|
|
|
|
|
"browser": true,
|
2023-11-15 18:58:14 +05:30
|
|
|
"react-native/react-native": true
|
2023-11-06 19:21:37 +05:30
|
|
|
},
|
|
|
|
|
"extends": [
|
2023-11-15 18:58:14 +05:30
|
|
|
"eslint:recommended",
|
2023-11-06 19:21:37 +05:30
|
|
|
"plugin:react/recommended",
|
2023-11-15 18:58:14 +05:30
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
|
|
|
|
"plugin:react-native/all"
|
2023-11-06 19:21:37 +05:30
|
|
|
],
|
|
|
|
|
"overrides": [],
|
|
|
|
|
"parserOptions": {
|
|
|
|
|
"ecmaVersion": "latest",
|
|
|
|
|
"sourceType": "module",
|
|
|
|
|
"project": ["./tsconfig.json"]
|
|
|
|
|
},
|
|
|
|
|
"plugins": ["react", "react-native"],
|
|
|
|
|
"rules": {
|
2023-12-08 15:59:27 +05:30
|
|
|
"@typescript-eslint/strict-boolean-expressions": 0,
|
2024-01-04 19:17:10 +05:30
|
|
|
"@typescript-eslint/no-floating-promises": 0,
|
|
|
|
|
"@typescript-eslint/no-misused-promises": 0,
|
|
|
|
|
"react-native/split-platform-components": 0
|
2023-11-06 19:21:37 +05:30
|
|
|
}
|
2023-04-12 19:15:38 +05:30
|
|
|
}
|