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 +```