Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
service_name: travis-pro
repo_token: xb7mdkOt7HvqNT5kHZ0ge3YV0jRJgJfcw
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You'll need to have a single commit for gitignores so subsequent commits properly ignore the right paths. To correct/redo this existing commit, you can run git rm -r --cached .

This untracks all files/paths listed in gitignore (or you can run git rm -r --cached .coveralls.yml to be more selective). Then git add . and git commit --amend --no-edit.

8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ node_modules
# testing
/coverage

# nyc test coverage
.nyc_output

#coveralls
.coveralls.yml

# misc
.DS_Store
.env.local
Expand All @@ -16,3 +22,5 @@ node_modules
npm-debug.log*
yarn-debug.log*
yarn-error.log*