Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
balloob committed Sep 22, 2015
1 parent 0be937e commit 4e79759
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "eslint-config-airbnb",
"extends": "airbnb",
"globals": {
"__DEV__": false,
"__DEMO__": false
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"author": "Paulus Schoutsen <Paulus@PaulusSchoutsen.nl> (http://paulusschoutsen.nl)",
"license": "MIT",
"dependencies": {
"home-assistant-js": "git+https://github.com/balloob/home-assistant-js.git#bb8bd7bd19cae511e43d4815191921c78c6f00fb",
"home-assistant-js": "git+https://github.com/balloob/home-assistant-js.git#ca8787e90e1176d46dba7fc26fad719ec61ef5be",
"lodash": "^3.10.1",
"moment": "^2.10.6"
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/entity/ha-entity-marker.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default new Polymer({
properties: {
entityId: {
type: String,
value: "",
value: '',
},

state: {
Expand Down
2 changes: 1 addition & 1 deletion src/dialogs/more-info-dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
entityHistoryGetters,
entityHistoryActions,
moreInfoGetters,
moreInfoActions
moreInfoActions,
} from '../util/home-assistant-js-instance';

import Polymer from '../polymer';
Expand Down
2 changes: 1 addition & 1 deletion src/home-assistant.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
navigationActions,
reactor,
startLocalStoragePreferencesSync,
syncGetters
syncGetters,
} from './util/home-assistant-js-instance';

import nuclearObserver from './util/bound-nuclear-behavior';
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/partial-history.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {
entityHistoryGetters,
entityHistoryActions
entityHistoryActions,
} from '../util/home-assistant-js-instance';

import Polymer from '../polymer';
Expand Down
2 changes: 1 addition & 1 deletion src/more-infos/more-info-configurator.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
streamGetters,
syncActions,
serviceActions
serviceActions,
} from '../util/home-assistant-js-instance';

import Polymer from '../polymer';
Expand Down
2 changes: 1 addition & 1 deletion src/more-infos/more-info-group.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {
entityGetters,
moreInfoGetters
moreInfoGetters,
} from '../util/home-assistant-js-instance';

import Polymer from '../polymer';
Expand Down
2 changes: 1 addition & 1 deletion src/util/can-toggle.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {
reactor,
serviceGetters
serviceGetters,
} from '../util/home-assistant-js-instance';

// Return boolean if entity can be toggled.
Expand Down

0 comments on commit 4e79759

Please sign in to comment.