Skip to content

Commit

Permalink
Update lint-staged
Browse files Browse the repository at this point in the history
  • Loading branch information
artf committed Jan 11, 2018
1 parent b0f87d7 commit ed03e09
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
5 changes: 4 additions & 1 deletion src/utils/Droppable.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit ed03e09

Please sign in to comment.