Added jsx-uses-react flag in eslint to prevent false positives about react included but not used in components.

This commit is contained in:
Chris
2015-10-16 07:57:39 +02:00
parent 2188e5cd0b
commit 05a06a819a
+2 -1
View File
@@ -23,6 +23,7 @@
"no-unused-vars": 1,
"no-trailing-spaces": [1, { "skipBlankLines": true }],
"no-unreachable": 1,
"no-alert": 0
"no-alert": 0,
"react/jsx-uses-react": 1
}
}