Tool to help automate adding contributor acknowledgements according to the all-contributors specification
Find a file
Kevin Jalbert f99b4701d3 feat: add alt text to emoji (#42)
* Add alt text (description) on all emoji

Using markdown its possible to attach an alt text (really the title
attribute) on a link, where the value of the link is the the emoji. As
for the actual href, using #xxxxx lets you not mess with the navigation
assuming you have unique keys. In my example, I'm simply using the
emoji's key and github user name (i.e., `<emoji-username>`).

All emojis are links even if they don't have any real url attached.

For example, `[👀](#eyes-kevinjalbert "Reviewed Pull Requests")`

* Add kevinjalbert to all-contributorsrc
2017-04-15 16:15:31 +02:00
lib feat: add alt text to emoji (#42) 2017-04-15 16:15:31 +02:00
.all-contributorsrc feat: add alt text to emoji (#42) 2017-04-15 16:15:31 +02:00
.editorconfig Feature/add editorconfig (#36) 2017-03-28 11:03:40 +02:00
.eslintrc Add eslint and xo 2016-03-07 00:28:25 +01:00
.gitignore Update dependencies 2016-05-05 16:15:52 +02:00
.travis.yml chore: semantic-release 2017-01-25 10:20:34 -08:00
cli.js fix: Bump inquirer to v3 and promisify everything (#34) 2017-02-15 22:25:32 +01:00
package.json fix: Bump inquirer to v3 and promisify everything (#34) 2017-02-15 22:25:32 +01:00
README.md feat: add alt text to emoji (#42) 2017-04-15 16:15:31 +02:00

all-contributors-cli

version All Contributors

This is a tool to help automate adding contributor acknowledgements according to the all-contributors specification.

Installation

You can install it via npm:

npm install all-contributors-cli -g

Then init the project using init and answer a few questions:

all-contributors init

Once initialized, you don't need to have all-contributors-cli installed globally. You can instead save it as a devDependency of your project and add it to your package.json scripts:

npm install --save-dev all-contributors-cli
{
  "scripts": {
    "add": "all-contributors add",
    "generate": "all-contributors generate"
  }
}

and use them via npm run:

npm run add -- jfmengels doc
npm run generate

Usage

Generating the contributors list

Use generate to generate the contributors list and inject it into your contributors file. Contributors will be read from your configuration file.

all-contributors generate

Add/update contributors

Use add to add new contributors to your project, or add new ways in which they have contributed. They will be added to your configuration file, and the contributors file will be updated just as if you used the generate command.

# Add new contributor <username>, who made a contribution of type <contribution>
all-contributors add <username> <contribution>
# Example:
all-contributors add jfmengels code,doc

Where username is the user's GitHub username, and contribution is a ,-separated list of ways to contribute, from the following list (see the specs):

  • code: 💻
  • plugin: 🔌
  • tool: 🔧
  • infra: 🚇
  • doc: 📖
  • translation: 🌍
  • question: 💬
  • test: ⚠️
  • bug: 🐛
  • example: 💡
  • blog: 📝
  • tutorial:
  • video: 📹
  • talk: 📢
  • design: 🎨
  • review: 👀
  • financial: 💵
  • fundingFinding: 🔍
  • eventOrganizing: 📋

Configuration

You can configure the project by updating the .all-contributorsrc JSON file. The data used to generate the contributors list will be stored in there, and you can configure how you want all-contributors-cli to generate the list.

These are the keys you can specify:

  • files: Array of files to update. Default: ['README.md']
  • projectOwner: Name of the user the project is hosted by. Example: jfmengels/all-contributors-cli --> jfmengels. Mandatory.
  • projectName: Name of the project. Example: jfmengels/all-contributors-cli --> all-contributors-cli. Mandatory.
  • types: Specify custom symbols or link templates for contribution types. Can override the documented types.
  • imageSize: Size (in px) of the user's avatar. Default: 100.
  • contributorsPerLine: Maximum number of columns for the contributors table. Default: 7.
  • contributorTemplate: Define your own template to generate the contributor list.
  • badgeTemplate: Define your own template to generate the badge.

Contributors

Thanks goes to these wonderful people (emoji key):


Jeroen Engels

💻 📖 ⚠️

Kent C. Dodds

📖 💻

João Guimarães

💻

Ben Briggs

💻

Itai Steinherz

📖 💻

Alex Jover

💻 📖

Jerod Santo

💻

Kevin Jalbert

💻

This project follows the all-contributors specification. Contributions of any kind are welcome!

LICENSE

MIT