Skip to content

Commit f6121d2

Browse files
author
Kent C. Dodds
committed
docs(contributors): Add all-contributors stuff
Because @mgol and others should be recognized for their contributions :-)
1 parent 7055b70 commit f6121d2

File tree

4 files changed

+45
-1
lines changed

4 files changed

+45
-1
lines changed

.all-contributorsrc

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"projectOwner": "kentcdodds",
3+
"projectName": "eslint-find-new-rules",
4+
"imageSize": 100,
5+
"contributors": [
6+
{
7+
"login": "kentcdodds",
8+
"name": "Kent C. Dodds",
9+
"avatar_url": "https://avatars3.githubusercontent.com/u/1500684?v=3",
10+
"html_url": "https://twitter.com/kentcdodds",
11+
"contributions": [
12+
"code", "doc", "test"
13+
]
14+
},
15+
{
16+
"login": "mgol",
17+
"name": "Michał Gołębiowski",
18+
"avatar_url": "https://avatars3.githubusercontent.com/u/1758366?v=3",
19+
"html_url": "https://github.com/mgol",
20+
"contributions": [
21+
"code"
22+
]
23+
}
24+
]
25+
}

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
4. `$ npm run validate` to validate you've got it working
1212
5. Create a branch for your PR
1313
6. `$ npm run test -- --watch` to watch the file system as you make changes to things
14-
7. Make your changes
14+
7. Make your changes. Make sure to add yourself to the `.all-contributorsrc`! [More info](https://github.com/kentcdodds/all-contributors)
1515
8. Run `npm run validate` to make sure things look good.
1616
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 :-)
1717
10. Push your branch to your fork

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ to identify built-in ESLint rules that you're not explicitly configuring.
99
[![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)
1010
[![MIT License](https://img.shields.io/npm/l/eslint-find-new-rules.svg?style=flat-square)](http://opensource.org/licenses/MIT)
1111
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
12+
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
13+
[![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors)
14+
<!-- ALL-CONTRIBUTORS-BADGE:END -->
1215

1316
## Usage
1417

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

58+
## Contributors
59+
60+
Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
61+
62+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
63+
| [![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) |
64+
| :---: | :---: |
65+
<!-- ALL-CONTRIBUTORS-LIST:END -->
66+
67+
This project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification.
68+
Contributions of any kind welcome!
69+
70+
Special thanks to [@mgol](https://github.com/mgol) who created the original script.
71+
5572
## LICENSE
5673

5774
MIT

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"test": "ava",
99
"lint": "eslint .",
1010
"check-kentcdodds": "./bin.js eslint-config-kentcdodds",
11+
"update-contributors": "all-contributors generate",
1112
"commit": "git-cz",
1213
"validate": "npm-run-all --parallel lint cover --sequential check-coverage",
1314
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
@@ -28,6 +29,7 @@
2829
"path-is-absolute": "1.0.0"
2930
},
3031
"devDependencies": {
32+
"all-contributors-cli": "2.0.0-beta3",
3133
"ava": "0.13.0",
3234
"codecov": "1.0.1",
3335
"commitizen": "2.7.2",

0 commit comments

Comments
 (0)