Skip to content

Commit

Permalink
adds basic package.json file to run pre-commit hooks see: #10
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonic committed Sep 11, 2017
1 parent 3df7c4d commit b0b7cfe
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"scripts": {
"test": "mix test",
"cover": "mix coveralls",
"lint": "mix credo --strict",
"dogma": "mix dogma"
},
"devDependencies": {
"pre-commit": "^1.2.2"
},
"pre-commit": [
"cover",
"dogma"
]
}

0 comments on commit b0b7cfe

Please sign in to comment.