From 8f3af2361020d498ab8c5e4411fe030127083662 Mon Sep 17 00:00:00 2001 From: Rosen Konstantinov Date: Fri, 12 Feb 2016 15:46:01 +0200 Subject: [PATCH] feat: add no-mount and jsx-quotes, bring back the no-bind --- react.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/react.js b/react.js index 9c275d8..7bb0e81 100644 --- a/react.js +++ b/react.js @@ -13,10 +13,12 @@ module.exports = { "react/jsx-indent-props": 2, "react/jsx-key": 2, "react/jsx-max-props-per-line": [2, { "maximum": 4 }], + "react/jsx-no-bind": 2, "react/jsx-no-duplicate-props": 2, "react/jsx-no-literals": 0, "react/jsx-no-undef": 2, "react/jsx-pascal-case": 2, + "react/jsx-quotes": 2, "react/jsx-sort-prop-types": 2, "react/jsx-sort-props": 2, "react/jsx-uses-react": 2, @@ -25,6 +27,7 @@ module.exports = { "react/no-did-mount-set-state": 2, "react/no-did-update-set-state": 2, "react/no-direct-mutation-state": 2, + "react/no-is-mounted": 2, "react/no-multi-comp": 2, "react/no-unknown-property": 2, "react/prefer-es6-class": 2,