From 8c63dd93a7aeee4eaea7bcb121cdae1553b04c1f Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Tue, 19 Apr 2016 08:39:16 +0200 Subject: [PATCH] Remove false comment --- packages/eslint-config-airbnb/rules/react.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-config-airbnb/rules/react.js b/packages/eslint-config-airbnb/rules/react.js index 521508c521..81f529f162 100644 --- a/packages/eslint-config-airbnb/rules/react.js +++ b/packages/eslint-config-airbnb/rules/react.js @@ -38,7 +38,7 @@ module.exports = { // Limit maximum of props on a single line in JSX // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-max-props-per-line.md 'react/jsx-max-props-per-line': [0, { 'maximum': 1 }], - // Prevent usage of .bind() and arrow functions in JSX props + // Prevent usage of .bind() in JSX props // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-bind.md 'react/jsx-no-bind': [2, { 'ignoreRefs': true,