Skip to content
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

Activating Open Collective #260

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: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
<br />

[![Build Status](https://travis-ci.org/duaraghav8/Ethlint.svg?branch=master)](https://travis-ci.org/duaraghav8/Ethlint)
[![Backers on Open Collective](https://opencollective.com/Ethlint/backers/badge.svg)](#backers)
[![Sponsors on Open Collective](https://opencollective.com/Ethlint/sponsors/badge.svg)](#sponsors)
[![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.svg)](https://gitter.im/Solium-linter/Lobby)

Ethlint (Formerly Solium) analyzes your Solidity code for style & security issues and fixes them.
Expand Down Expand Up @@ -114,3 +116,33 @@ solium -d contracts/ --fix
If Ethlint helped make your life simpler, please consider donating ETH to `0xacc661A56af9793a4437876a52F4Ad3fc3C443d6`

#### [IDE and Editor Integrations](http://solium.readthedocs.io/en/latest/user-guide.html#index-9) | [Documentation](https://ethlint.readthedocs.io) | [Demo Video](https://www.youtube.com/watch?v=MlQ6fzwixpI)

## Contributors

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


## Backers

Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/Ethlint#backer)]

<a href="https://opencollective.com/Ethlint#backers" target="_blank"><img src="https://opencollective.com/Ethlint/backers.svg?width=890"></a>


## Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/Ethlint#sponsor)]

<a href="https://opencollective.com/Ethlint/sponsor/0/website" target="_blank"><img src="https://opencollective.com/Ethlint/sponsor/0/avatar.svg"></a>
<a href="https://opencollective.com/Ethlint/sponsor/1/website" target="_blank"><img src="https://opencollective.com/Ethlint/sponsor/1/avatar.svg"></a>
<a href="https://opencollective.com/Ethlint/sponsor/2/website" target="_blank"><img src="https://opencollective.com/Ethlint/sponsor/2/avatar.svg"></a>
<a href="https://opencollective.com/Ethlint/sponsor/3/website" target="_blank"><img src="https://opencollective.com/Ethlint/sponsor/3/avatar.svg"></a>
<a href="https://opencollective.com/Ethlint/sponsor/4/website" target="_blank"><img src="https://opencollective.com/Ethlint/sponsor/4/avatar.svg"></a>
<a href="https://opencollective.com/Ethlint/sponsor/5/website" target="_blank"><img src="https://opencollective.com/Ethlint/sponsor/5/avatar.svg"></a>
<a href="https://opencollective.com/Ethlint/sponsor/6/website" target="_blank"><img src="https://opencollective.com/Ethlint/sponsor/6/avatar.svg"></a>
<a href="https://opencollective.com/Ethlint/sponsor/7/website" target="_blank"><img src="https://opencollective.com/Ethlint/sponsor/7/avatar.svg"></a>
<a href="https://opencollective.com/Ethlint/sponsor/8/website" target="_blank"><img src="https://opencollective.com/Ethlint/sponsor/8/avatar.svg"></a>
<a href="https://opencollective.com/Ethlint/sponsor/9/website" target="_blank"><img src="https://opencollective.com/Ethlint/sponsor/9/avatar.svg"></a>


13 changes: 10 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"scripts": {
"test": "nyc --reporter=text --reporter=html mocha --require should --reporter spec --recursive",
"lint": "eslint lib/ test/ bin/ config/",
"lint-fix": "eslint lib/ test/ bin/ config/ --fix"
"lint-fix": "eslint lib/ test/ bin/ config/ --fix",
"postinstall": "opencollective-postinstall"
},
"keywords": [
"lint",
Expand Down Expand Up @@ -43,11 +44,13 @@
"eol": "^0.9.1",
"js-string-escape": "^1.0.1",
"lodash": "^4.14.2",
"opencollective-postinstall": "^2.0.2",
"sol-digger": "0.0.2",
"sol-explore": "1.6.1",
"solium-plugin-security": "0.1.1",
"solparse": "2.2.8",
"text-table": "^0.2.0"
"text-table": "^0.2.0",
"opencollective": "^1.0.3"
},
"devDependencies": {
"chai": "^3.5.0",
Expand All @@ -60,5 +63,9 @@
"solium-config-test-invalid-syntax": "0.0.0",
"solium-plugin-test": "0.1.5",
"solium-plugin-test-invalid-schema": "0.0.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/Ethlint"
}
}
}