feat(babel6): 88,888 lint errors

This commit is contained in:
Evan Morikawa 2016-05-05 16:50:03 -07:00
parent 654820d568
commit 1def854603

View file

@ -16,18 +16,19 @@
"jasmine": true
},
"rules": {
"react/prop-types": [2, {"ignore": ["children"]}],
"react/no-multi-comp": [0],
"react/sort-comp": [2],
"eqeqeq": [2, "smart"],
"id-length": [0],
"object-curly-spacing": [0],
"no-console": [0],
"no-loop-func": [0],
"no-constant-condition": [0],
"new-cap": [2, {"capIsNew": false}],
"no-shadow": [1],
"quotes": [0],
"semi": [0]
"eqeqeq": ["error", "smart"],
"id-length": "off",
"object-curly-spacing": "off",
"new-cap": ["error", {"capIsNew": false}],
"no-console": "off",
"no-constant-condition": "off",
"no-loop-func": "off",
"no-shadow": "error",
"no-underscore-dangle": "off",
"quotes": "off",
"semi": "off",
"react/no-multi-comp": "off",
"react/prop-types": ["error", {"ignore": ["children"]}],
"react/sort-comp": "error"
}
}