Skip to content

Commit abf5aa5

Browse files
committed
Exercise 10.2
1 parent a5a315e commit abf5aa5

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

part10/.eslintrc.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"plugins": [
3+
"react",
4+
"react-native"
5+
],
6+
"settings": {
7+
"react": {
8+
"version": "detect"
9+
}
10+
},
11+
"extends": [
12+
"eslint:recommended",
13+
"plugin:react/recommended"
14+
],
15+
"parser": "@babel/eslint-parser",
16+
"env": {
17+
"react-native/react-native": true
18+
},
19+
"rules": {
20+
"react/prop-types": "off",
21+
"react/react-in-jsx-scope": "off"
22+
}
23+
}

0 commit comments

Comments
 (0)