Fixed eslint settings

This commit is contained in:
Jori Lallo
2016-06-30 23:21:58 -07:00
parent 296abab7eb
commit 34e59876bd
2 changed files with 12 additions and 1 deletions

View File

@@ -4,6 +4,14 @@
"rules": {
"arrow-body-style":[0, "as-needed"], // fix `this` shortcut on ES6 classes
"react/jsx-no-bind": 0, // Makes difficult to pass args to prop functions
"react/jsx-curly-spacing": [2, "always"], // Spaces inside curlies
"no-else-return": 0,
},
"settings" : {
"import/resolver": {
"webpack": {
"config": "webpack.config.js"
}
}
}
}
}