Skip to content

Commit

Permalink
Linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
t2t2 committed Oct 15, 2016
1 parent 82e9ed6 commit d91ce1a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function created() {
this._syncers[key].ready()
})

if (Object.keys(this._syncers).length) {
if (Object.keys(this._syncers).length > 0) {
// Watcher for $loadingSyncers
this.$watch(function () {
// If any are true
Expand Down
2 changes: 1 addition & 1 deletion test/helpers/feathers-server.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import feathers from 'feathers'
import feathersClient from 'feathers/client'
import feathersSocketIOclient from 'feathers-socketio/client'
import {localSocketer} from './feathers-socket'
import localSocketer from './feathers-socket'
import {SocketIO} from './mock-socket'

function localClient(url) {
Expand Down
2 changes: 1 addition & 1 deletion test/helpers/feathers-socket.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {Server} from './mock-socket'
* @param {String} url
* @returns {Function}
*/
export function localSocketer(url) {
export default function localSocketer(url) {
return function () {
const app = this

Expand Down

0 comments on commit d91ce1a

Please sign in to comment.