Files
address-verification-app/.eslintrc.json

27 lines
698 B
JSON
Raw Normal View History

{
"env": {
"browser": true,
"react-native/react-native": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:react-native/all"
],
"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
}
}