Skip to content

Commit

Permalink
add prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien TASSIN committed May 9, 2018
1 parent 786c632 commit 7816701
Show file tree
Hide file tree
Showing 2 changed files with 727 additions and 22 deletions.
11 changes: 10 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,19 @@
"license": "MIT",
"private": false,
"devDependencies": {
"eslint": "^4.19.1",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.1.0",
"prettier": "1.12.1",
"puppeteer": "^1.3.0"
},
"scripts": {
"test": "jest"
"lint": "eslint",
"test": "jest",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
}
}
Loading

0 comments on commit 7816701

Please sign in to comment.