Skip to content

Commit

Permalink
docs(contributors): Add all-contributors stuff
Browse files Browse the repository at this point in the history
Because @mgol and others should be recognized for their contributions :-)
  • Loading branch information
Kent C. Dodds committed Mar 16, 2016
1 parent 7055b70 commit f6121d2
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"projectOwner": "kentcdodds",
"projectName": "eslint-find-new-rules",
"imageSize": 100,
"contributors": [
{
"login": "kentcdodds",
"name": "Kent C. Dodds",
"avatar_url": "https://avatars3.githubusercontent.com/u/1500684?v=3",
"html_url": "https://twitter.com/kentcdodds",
"contributions": [
"code", "doc", "test"
]
},
{
"login": "mgol",
"name": "Michał Gołębiowski",
"avatar_url": "https://avatars3.githubusercontent.com/u/1758366?v=3",
"html_url": "https://github.com/mgol",
"contributions": [
"code"
]
}
]
}
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
4. `$ npm run validate` to validate you've got it working
5. Create a branch for your PR
6. `$ npm run test -- --watch` to watch the file system as you make changes to things
7. Make your changes
7. Make your changes. Make sure to add yourself to the `.all-contributorsrc`! [More info](https://github.com/kentcdodds/all-contributors)
8. Run `npm run validate` to make sure things look good.
9. Commit your changes following [our standards](https://github.com/stevemao/conventional-changelog-angular/blob/master/convention.md) (optionally use `$ npm run commit` to craft a commit message and commit. If you're having trouble committing, try adding `--no-verify` to your `git commit` command and ask for help in the pull request :-)
10. Push your branch to your fork
Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ to identify built-in ESLint rules that you're not explicitly configuring.
[![downloads](https://img.shields.io/npm/dm/eslint-find-new-rules.svg?style=flat-square)](http://npm-stat.com/charts.html?package=eslint-find-new-rules&from=2015-08-01)
[![MIT License](https://img.shields.io/npm/l/eslint-find-new-rules.svg?style=flat-square)](http://opensource.org/licenses/MIT)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
[![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors)
<!-- ALL-CONTRIBUTORS-BADGE:END -->

## Usage

Expand Down Expand Up @@ -52,6 +55,20 @@ It will also default to the `main` in your `package.json`, so you can omit the a
eslint-find-new-rules
```

## Contributors

Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
| [![Kent C. Dodds](https://avatars3.githubusercontent.com/u/1500684?v=3&s=100)<br /><sub>Kent C. Dodds</sub>]()<br />[💻](https://github.com/kentcdodds/eslint-find-new-rules/commits?author=kentcdodds) [📖](https://github.com/kentcdodds/eslint-find-new-rules/commits?author=kentcdodds) [⚠️](https://github.com/kentcdodds/eslint-find-new-rules/commits?author=kentcdodds) | [![Michał Gołębiowski](https://avatars3.githubusercontent.com/u/1758366?v=3&s=100)<br /><sub>Michał Gołębiowski</sub>]()<br />[💻](https://github.com/kentcdodds/eslint-find-new-rules/commits?author=mgol) |
| :---: | :---: |
<!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification.
Contributions of any kind welcome!

Special thanks to [@mgol](https://github.com/mgol) who created the original script.

## LICENSE

MIT
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"test": "ava",
"lint": "eslint .",
"check-kentcdodds": "./bin.js eslint-config-kentcdodds",
"update-contributors": "all-contributors generate",
"commit": "git-cz",
"validate": "npm-run-all --parallel lint cover --sequential check-coverage",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
Expand All @@ -28,6 +29,7 @@
"path-is-absolute": "1.0.0"
},
"devDependencies": {
"all-contributors-cli": "2.0.0-beta3",
"ava": "0.13.0",
"codecov": "1.0.1",
"commitizen": "2.7.2",
Expand Down

2 comments on commit f6121d2

@mgol
Copy link
Collaborator

@mgol mgol commented on f6121d2 Mar 16, 2016

Choose a reason for hiding this comment

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

Thanks! :)

@kentcdodds
Copy link
Owner

Choose a reason for hiding this comment

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

No, thank YOU! All I did was the boring stuff :-) You did the actual thinking.

party-how-i-met-your-mother-applause-6nuiJjOOQBBn2

Please sign in to comment.