Skip to content

Activating Open Collective #428

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
32 changes: 31 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</p>
<p align="center">
<a href="https://travis-ci.org/jdneo/vscode-leetcode">
<img src="https://img.shields.io/travis/jdneo/vscode-leetcode.svg?style=flat-square" alt="">
<a href="https://opencollective.com/vscode-leetcode" alt="Financial Contributors on Open Collective"><img src="https://opencollective.com/vscode-leetcode/all/badge.svg?label=financial+contributors" /></a> <img src="https://img.shields.io/travis/jdneo/vscode-leetcode.svg?style=flat-square" alt="">
Copy link
Member

Choose a reason for hiding this comment

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

Could we use the badge from:https://shields.io/ and adding the flat-square style? I saw it already support Open Collective

</a>
<a href="https://gitter.im/vscode-leetcode/Lobby">
<img src="https://img.shields.io/gitter/room/jdneo/vscode-leetcode.svg?style=flat-square" alt="">
Expand Down Expand Up @@ -141,3 +141,33 @@ Refer to [CHANGELOG](https://github.com/jdneo/vscode-leetcode/blob/master/CHANGE

- This extension is based on [@skygragon](https://github.com/skygragon)'s [leetcode-cli](https://github.com/skygragon/leetcode-cli) open source project.
- Special thanks to our [contributors](https://github.com/jdneo/vscode-leetcode/blob/master/ACKNOWLEDGEMENTS.md).

## Contributors

### Code Contributors

This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)].
<a href="https://github.com/jdneo/vscode-leetcode/graphs/contributors"><img src="https://opencollective.com/vscode-leetcode/contributors.svg?width=890&button=false" /></a>

### Financial Contributors

Become a financial contributor and help us sustain our community. [[Contribute](https://opencollective.com/vscode-leetcode/contribute)]

#### Individuals

<a href="https://opencollective.com/vscode-leetcode"><img src="https://opencollective.com/vscode-leetcode/individuals.svg?width=890"></a>

#### Organizations

Support this project with your organization. Your logo will show up here with a link to your website. [[Contribute](https://opencollective.com/vscode-leetcode/contribute)]
Copy link
Member

Choose a reason for hiding this comment

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

Cool list here, may I ask how to update this list?


<a href="https://opencollective.com/vscode-leetcode/organization/0/website"><img src="https://opencollective.com/vscode-leetcode/organization/0/avatar.svg"></a>
<a href="https://opencollective.com/vscode-leetcode/organization/1/website"><img src="https://opencollective.com/vscode-leetcode/organization/1/avatar.svg"></a>
<a href="https://opencollective.com/vscode-leetcode/organization/2/website"><img src="https://opencollective.com/vscode-leetcode/organization/2/avatar.svg"></a>
<a href="https://opencollective.com/vscode-leetcode/organization/3/website"><img src="https://opencollective.com/vscode-leetcode/organization/3/avatar.svg"></a>
<a href="https://opencollective.com/vscode-leetcode/organization/4/website"><img src="https://opencollective.com/vscode-leetcode/organization/4/avatar.svg"></a>
<a href="https://opencollective.com/vscode-leetcode/organization/5/website"><img src="https://opencollective.com/vscode-leetcode/organization/5/avatar.svg"></a>
<a href="https://opencollective.com/vscode-leetcode/organization/6/website"><img src="https://opencollective.com/vscode-leetcode/organization/6/avatar.svg"></a>
<a href="https://opencollective.com/vscode-leetcode/organization/7/website"><img src="https://opencollective.com/vscode-leetcode/organization/7/avatar.svg"></a>
<a href="https://opencollective.com/vscode-leetcode/organization/8/website"><img src="https://opencollective.com/vscode-leetcode/organization/8/avatar.svg"></a>
<a href="https://opencollective.com/vscode-leetcode/organization/9/website"><img src="https://opencollective.com/vscode-leetcode/organization/9/avatar.svg"></a>
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"postinstall": "node ./node_modules/vscode/bin/install && opencollective-postinstall",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"lint": "tslint --project tsconfig.json -e src/*.d.ts -t verbose"
},
Expand All @@ -681,8 +681,13 @@
"highlight.js": "^9.15.6",
"lodash": "^4.17.13",
"markdown-it": "^8.4.2",
"opencollective-postinstall": "^2.0.2",
Copy link
Member

Choose a reason for hiding this comment

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

Can we move this dependency into the "devDependencies"?

"require-from-string": "^2.0.2",
"unescape-js": "^1.1.1",
"vsc-leetcode-cli": "2.6.10"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/vscode-leetcode"
}
}
}