Compare commits

..

2 Commits

Author SHA1 Message Date
Chris 515969e6be 0.2.1 2015-10-16 07:58:19 +02:00
Chris 05a06a819a Added jsx-uses-react flag in eslint to prevent false positives about react included but not used in components. 2015-10-16 07:57:39 +02:00
2 changed files with 3 additions and 2 deletions
+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
}
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "react-webpack-template",
"version": "0.2.0",
"version": "0.2.1",
"description": "A base skeleton template for react and webpack without task runners",
"main": "server.js",
"scripts": {