This commit is contained in:
Jori Lallo
2016-08-03 15:00:17 +03:00
parent 030dfd383b
commit 5c64321c17
2 changed files with 6 additions and 4 deletions

View File

@@ -4,7 +4,9 @@
"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
"react/jsx-curly-spacing": [2, "always", {"spacing": {
"objectLiterals": "never"
}}], // Spaces inside curlies, except prop={{}}
"react/prefer-stateless-function": 0, // Don't prefer stateless components
"no-else-return": 0,
},