We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fcd03f commit b36f21dCopy full SHA for b36f21d
packages/eslint-config-airbnb/rules/react.js
@@ -27,6 +27,8 @@ module.exports = {
27
'react/jsx-indent-props': [2, 2],
28
// Limit maximum of props on a single line in JSX
29
'react/jsx-max-props-per-line': 0,
30
+ // Prevent usage of .bind() and arrow functions in JSX props
31
+ 'react/jsx-no-bind': 0,
32
// Prevent duplicate props in JSX
33
// https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-duplicate-props.md
34
'react/jsx-no-duplicate-props': 0,
0 commit comments