Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
Prettier (#101)
Browse files Browse the repository at this point in the history
* Add prettier

* Add husky and lint-staged for precommit prettier

* Update test

* Fix test
  • Loading branch information
eddiemoore committed Jul 8, 2018
1 parent 16efd18 commit f954f91
Show file tree
Hide file tree
Showing 41 changed files with 3,533 additions and 1,156 deletions.
3 changes: 3 additions & 0 deletions .prettierignore
@@ -0,0 +1,3 @@
node_modules/
.git/
coverage/
6 changes: 6 additions & 0 deletions .prettierrc
@@ -0,0 +1,6 @@
{
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"useTabs": false
}
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -3,6 +3,8 @@ language: node_js
sudo: false

node_js:
- "10"
- "9"
- "8"
- "7"
- "6"
Expand Down
4 changes: 2 additions & 2 deletions index.js
@@ -1,3 +1,3 @@
var handleInput = require('./lib/codecov');
var handleInput = require('./lib/codecov')

exports.handleInput = handleInput;
exports.handleInput = handleInput

0 comments on commit f954f91

Please sign in to comment.