diff --git a/package.json b/package.json index 074885198..0ddd1c6d9 100644 --- a/package.json +++ b/package.json @@ -76,7 +76,7 @@ ] }, "lint-staged": { - "./{src,test}/**/*.js": ["prettier --single-quote --write", "git add"] + "{src,test}/**/*.js": ["prettier --single-quote --write", "git add"] }, "scripts": { "lint": "eslint src", diff --git a/src/utils/Droppable.js b/src/utils/Droppable.js index 25303f5ec..29ba28c96 100644 --- a/src/utils/Droppable.js +++ b/src/utils/Droppable.js @@ -4,7 +4,10 @@ import { bindAll } from 'underscore'; export class Droppable { constructor(em) { this.em = em; - this.el = this.em.get('DomComponents').getWrapper().getEl(); + this.el = this.em + .get('DomComponents') + .getWrapper() + .getEl(); this.counter = 0; bindAll( this,