Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b1cdf83

Browse files
committedApr 18, 2016
Add RN part
1 parent 8140fb6 commit b1cdf83

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+3402
-1
lines changed
 

‎step-8/.eslintignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
webpack.config.js
3+
public
4+
README.md

‎step-8/.eslintrc

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"extends": "eslint:recommended",
3+
"env": {
4+
"browser": true,
5+
"node": true,
6+
"es6": true
7+
},
8+
"plugins": [
9+
"react"
10+
],
11+
"parserOptions": {
12+
"ecmaVersion": 6,
13+
"sourceType": "module",
14+
"ecmaFeatures": {
15+
"jsx": true,
16+
"experimentalObjectRestSpread": true
17+
},
18+
},
19+
"rules": {
20+
"jsx-quotes": 1,
21+
"react/display-name": 0,
22+
"react/forbid-prop-types": 0,
23+
"react/jsx-boolean-value": 1,
24+
"react/jsx-closing-bracket-location": 0,
25+
"react/jsx-curly-spacing": 1,
26+
"react/jsx-handler-names": 1,
27+
"react/jsx-indent-props": 1,
28+
"react/jsx-key": 1,
29+
"react/jsx-max-props-per-line": 1,
30+
"react/jsx-no-bind": 1,
31+
"react/jsx-no-duplicate-props": 1,
32+
"react/jsx-no-literals": 0,
33+
"react/jsx-no-undef": 1,
34+
"react/jsx-pascal-case": 1,
35+
"react/jsx-sort-prop-types": 1,
36+
"react/jsx-sort-props": 0,
37+
"react/jsx-uses-react": 1,
38+
"react/jsx-uses-vars": 1,
39+
"react/no-danger": 1,
40+
"react/no-did-mount-set-state": 0,
41+
"react/no-did-update-set-state": 0,
42+
"react/no-direct-mutation-state": 1,
43+
"react/no-multi-comp": 1,
44+
"react/no-set-state": 0,
45+
"react/no-unknown-property": 1,
46+
"react/prefer-es6-class": 0,
47+
"react/prop-types": 1,
48+
"react/react-in-jsx-scope": 1,
49+
"react/require-extension": 1,
50+
"react/self-closing-comp": 1,
51+
"react/sort-comp": 1,
52+
"react/wrap-multilines": 1
53+
}
54+
}

0 commit comments

Comments
 (0)
Please sign in to comment.