Skip to content

Commit

Permalink
chore(tools): configures eslint react
Browse files Browse the repository at this point in the history
configures eslint-react plugin to lint for proptypes
currently at level 0, so no exploding errors yet.

[#99469294]
  • Loading branch information
Geoff Pleiss and Kenny Wang committed Jul 20, 2015
1 parent ba28e94 commit 1bebbae
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
"jasmine": true
},
"ecmaFeatures": {
"modules": true
"modules": true,
"jsx": true
},
"plugins": [
"eslint-plugin-react"
"react"
],
"rules": {
"camelcase": 0,
Expand All @@ -22,6 +23,7 @@
"no-underscore-dangle": 0,
"no-unused-expressions": 0,
"quotes": [2, "single", "avoid-escape"],
"strict": 0
"strict": 0,
"react/prop-types": 0
}
}

0 comments on commit 1bebbae

Please sign in to comment.