Files
address-verification-app/.eslintrc.json
Varnit Goyal 09d2dc4c72 added code owner file (#645)
* added code owner file

* added code owner file

* added code owner file

* fix prettier and eslint

* fix prettier and eslint

* added github template
2023-11-15 18:58:14 +05:30

24 lines
550 B
JSON

{
"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": {
"@typescript-eslint/strict-boolean-expressions": 0
}
}