Skip to content

Commit

Permalink
Merge branch 'bodia-uz-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
koistya committed Apr 16, 2015
2 parents cbbb60c + 58af610 commit 94e700d
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 16 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"stage": 0
}
9 changes: 8 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
{
"parser": "babel-eslint",
"plugins": [
"react"
],
"env": {
"browser": true,
"node": true
"node": true,
"es6": true
},
"globals": {
"__DEV__": true,
"__SERVER__": true
},
"ecmaFeatures": {
"jsx": true
},
"rules": {
// Strict mode
"strict": [2, "never"],
Expand Down
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"npm": ">= 2.1"
},
"dependencies": {
"babel": "4.7.16",
"babel": "5.1.10",
"bootstrap": "3.3.4",
"eventemitter3": "0.1.6",
"express": "4.12.3",
Expand All @@ -24,14 +24,15 @@
},
"devDependencies": {
"autoprefixer-loader": "^1.2.0",
"babel-core": "^4.7.16",
"babel-eslint": "^2.0.2",
"babel-loader": "^4.3.0",
"babel-core": "^5.1.10",
"babel-eslint": "^3.0.1",
"babel-loader": "^5.0.0",
"browser-sync": "^2.5.3",
"css-loader": "^0.10.1",
"del": "^1.1.1",
"eslint": "^0.18.0",
"eslint-loader": "^0.9.0",
"eslint": "^0.19.0",
"eslint-loader": "^0.10.0",
"eslint-plugin-react": "^2.1.0",
"git-push": "^0.1.0",
"gulp": "^3.8.11",
"gulp-autoprefixer": "^2.1.0",
Expand Down
8 changes: 5 additions & 3 deletions src/components/App/setViewport.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
* LICENSE.txt file in the root directory of this source tree.
*/

import React, { Component } from 'react';
import React, { Component } from 'react'; // eslint-disable-line no-unused-vars
import { canUseDOM } from 'react/lib/ExecutionEnvironment';

export default function setViewport(ComposedComponent) {
function setViewport(ComposedComponent) {
return class AppViewport extends Component {

constructor() {
Expand Down Expand Up @@ -45,4 +45,6 @@ export default function setViewport(ComposedComponent) {
}

};
};
}

export default setViewport;
2 changes: 1 addition & 1 deletion src/components/ContentPage/ContentPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import './ContentPage.less';
import React, { PropTypes } from 'react';
import React, { PropTypes } from 'react'; // eslint-disable-line no-unused-vars

class ContentPage {

Expand Down
4 changes: 2 additions & 2 deletions src/components/Navbar/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
* LICENSE.txt file in the root directory of this source tree.
*/

import React, { Component } from 'react';
import React from 'react'; // eslint-disable-line no-unused-vars

class Navbar extends Component {
class Navbar {

render() {
return (
Expand Down
4 changes: 2 additions & 2 deletions src/components/NotFoundPage/NotFoundPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
*/

//import './NotFoundPage.less';
import React, { Component } from 'react';
import React from 'react'; // eslint-disable-line no-unused-vars

class NotFoundPage extends Component {
class NotFoundPage {

render() {
return (
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ var config = {
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel-loader?playground'
loader: 'babel-loader'
}
]
}
Expand Down

0 comments on commit 94e700d

Please sign in to comment.