Skip to content

Commit

Permalink
fix(package): fix lint-staged config
Browse files Browse the repository at this point in the history
  • Loading branch information
lgaticaq committed Jun 19, 2017
1 parent 7ecfa15 commit 2f2c257
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,16 +67,16 @@
}
},
"lint-staged": {
"linters": {
"src/**/*.js": [
"prettier-standard",
"git add"
],
"test/**/*.js": [
"prettier-standard",
"git add"
]
}
"src/**/*.js": [
"eslint --fix",
"prettier-standard",
"git add"
],
"test/**/*.js": [
"eslint --fix",
"prettier-standard",
"git add"
]
},
"tonicExampleFilename": "example.js"
}

0 comments on commit 2f2c257

Please sign in to comment.