Skip to content

Commit

Permalink
fixing lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nosovsh committed Oct 22, 2015
1 parent 0e188c6 commit 984ae6b
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"prefer-const": 0,

"vars-on-top": 0, // easy to move to ES6 some day
"comma-dangle": [2, "never"]
"comma-dangle": [2, "never"],
"id-length": 0
}

}
1 change: 1 addition & 0 deletions components/smart/Map/MyLocation.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
var L = require("leaflet");
var LOCATION_TIMEOUT = 1 * 60 * 1000;

/**
Expand Down
1 change: 1 addition & 0 deletions flux/parking/ParkingActions.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
var _ = require("lodash");
var ParkingConstants = require("./ParkingConstants");
var ParkingClient = require("./ParkingClient");
var OpinionConstants = require("../opinion/OpinionConstants");
Expand Down
1 change: 1 addition & 0 deletions flux/parking/ParkingClient.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* global YANDEX_API_KEY */
var _ = require("lodash");
var $ = require("jquery");

Expand Down
1 change: 1 addition & 0 deletions flux/user/UserStore.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
var _ = require("lodash");
var Fluxxor = require("fluxxor");
var UserConstants = require("./UserConstants");

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"babel-eslint": "^4.1.3",
"csscomb": "^3.1.8",
"eslint": "^1.7.3",
"eslint-config-airbnb-es5": "^1.0.8",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.6.3",
"express": "^4.12.3",
"react-hot-loader": "^1.3.0",
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var webpack = require("webpack");
var path = require("path");
var autoprefixer = require("autoprefixer");
var precss = require("precss");
var precss = require("precss");

module.exports = {
devtool: "cheap-module-eval-source-map",
Expand Down

0 comments on commit 984ae6b

Please sign in to comment.