From 1098debf44227e50116d8029c82d02c578d3ae58 Mon Sep 17 00:00:00 2001 From: mojpm Date: Thu, 23 Sep 2021 11:15:33 +0300 Subject: [PATCH] add all contributors in README --- .gitignore | 1 + .vscode/settings.json | 3 +++ CONTRIBUTING.MD | 20 ++++++++++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 .gitignore create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..23830fb --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "git.ignoreLimitWarning": true +} diff --git a/CONTRIBUTING.MD b/CONTRIBUTING.MD index caf2fff..e569461 100644 --- a/CONTRIBUTING.MD +++ b/CONTRIBUTING.MD @@ -44,3 +44,23 @@ Please be sure to keep the following in mind before adding a new resource: And that's it. Thanks for making this repo better for everyone.❤ + +# Adding Contributors + +At the end of the README, we add everyone who contributed to the repo. After making your contribution, run the following command in your terminal to add yourself. + +```shell +yarn contributors:add +``` + +Replace `` with your github username. + +Replace `` with the type of contribution you made. Use [this list](https://allcontributors.org/docs/en/emoji-key) for a reference of several types. Most commonly used are `doc` and `content`. + +Separate with commas if you're adding more than one. + +#### Example + +```shell +yarn contributors:add codingknite doc,content +```