poker-chips-helper/.eslintrc.json
2025-02-07 20:27:03 -08:00

31 lines
606 B
JSON

{
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-native/all",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"env": {
"es6": true,
"node": true,
"browser": true
},
"plugins": [
"react",
"react-native",
"prettier"
],
"rules": {
"prettier/prettier": "error",
"react/prop-types": "off"
},
"settings": {
"react": {
"version": "detect"
}
}
}