Add prettier

This commit is contained in:
Brian Ng
2017-03-04 09:58:57 -06:00
parent 89d8f70fcd
commit 93cc22dae1
4 changed files with 284 additions and 32 deletions

View File

@@ -3,10 +3,11 @@
"private": true,
"license": "MIT",
"scripts": {
"test": "make test",
"build": "make build",
"fix": "make fix",
"lint": "make lint",
"fix": "make fix"
"precommit": "lint-staged",
"test": "make test"
},
"devDependencies": {
"async": "^1.5.0",
@@ -24,9 +25,10 @@
"chalk": "1.1.1",
"codecov": "^1.0.1",
"derequire": "^2.0.2",
"eslint": "^3.9.0",
"eslint-config-babel": "^6.0.0",
"eslint": "^3.14.1",
"eslint-config-babel": "^7.0.1",
"eslint-plugin-flowtype": "^2.20.0",
"eslint-plugin-prettier": "^2.1.2",
"flow-bin": "^0.41.0",
"gulp": "^3.9.0",
"gulp-babel": "babel/gulp-babel#b7-alpha",
@@ -34,12 +36,15 @@
"gulp-plumber": "^1.0.1",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.5",
"husky": "^0.13.2",
"lerna": "2.0.0-rc.4",
"lerna-changelog": "^0.2.0",
"lint-staged": "^3.6.1",
"lodash": "^4.2.0",
"mocha": "^3.0.0",
"nyc": "^10.0.0",
"output-file-sync": "^1.1.1",
"prettier": "1.5.0",
"rimraf": "^2.4.3",
"semver": "^5.0.0",
"through2": "^2.0.0",
@@ -57,5 +62,11 @@
],
"sourceMap": false,
"instrument": false
},
"lint-staged": {
"*.js": [
"eslint --format=codeframe --fix",
"git add"
]
}
}