1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-30 02:21:17 +03:00

Change jsx-no-bind to warn

This commit is contained in:
David Baker
2018-05-02 17:36:29 +01:00
parent 9f8202c8a9
commit adf3e2f376

View File

@ -41,7 +41,8 @@ module.exports = {
"react/jsx-uses-react": "error",
// bind or arrow function in props causes performance issues
"react/jsx-no-bind": ["error", {
// (but we currently use them in some places)
"react/jsx-no-bind": ["warn", {
"ignoreRefs": true,
}],
"react/jsx-key": ["error"],