Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
introduce eslintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
voronianski committed May 1, 2015
1 parent 8038b2c commit 40586d3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// http://eslint.org/docs/rules
{
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true
},
"plugins": [
"react"
],
"rules": {
"quotes": [2, "single"],
"no-underscore-dangle": 0,
"no-unused-vars": 1,
"no-unused-expressions": 0,
"react/jsx-no-undef": 2,
"yoda": 0,
"no-use-before-define": 0,
"comma-dangle": 0
}
}

0 comments on commit 40586d3

Please sign in to comment.