Skip to content

Commit

Permalink
feat: reorder contributions keys (#50)
Browse files Browse the repository at this point in the history
* chore: reorder contributions keys

* chore: re-order keys here too
  • Loading branch information
machour authored and Kent C. Dodds committed Sep 25, 2017
1 parent e5bd3b4 commit ce90946
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 34 deletions.
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,26 +54,26 @@ all-contributors add <username> <contribution>
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](https://github.com/kentcdodds/all-contributors#emoji-key)):
- blog: [📝](# "Blogposts")
- bug: [🐛](# "Bug reports")
- code: [💻](# "Code")
- plugin: [🔌](# "Plugin/utility libraries")
- tool: [🔧](# "Tools")
- infra: [🚇](# "Infrastructure (Hosting, Build-Tools, etc)")
- design: [🎨](# "Design")
- doc: [📖](# "Documentation")
- translation: [🌍](# "Translation")
- question: [💬](# "Answering Questions")
- test: [⚠️](# "Tests")
- bug: [🐛](# "Bug reports")
- eventOrganizing: [📋](# "Event Organizing")
- example: [💡](# "Examples")
- blog: [📝](# "Blogposts")
- tutorial: [](# "Tutorials")
- video: [📹](# "Videos")
- talk: [📢](# "Talks")
- design: [🎨](# "Design")
- review: [👀](# "Reviewed Pull Requests")
- financial: [💵](# "Financial")
- fundingFinding: [🔍](# "Funding Finding")
- eventOrganizing: [📋](# "Event Organizing")
- ideas: [🤔](# "Ideas, Planning, & Feedback")
- infra: [🚇](# "Infrastructure (Hosting, Build-Tools, etc)")
- plugin: [🔌](# "Plugin/utility libraries")
- question: [💬](# "Answering Questions")
- review: [👀](# "Reviewed Pull Requests")
- talk: [📢](# "Talks")
- test: [⚠️](# "Tests")
- tool: [🔧](# "Tools")
- translation: [🌍](# "Translation")
- tutorial: [](# "Tutorials")
- video: [📹](# "Videos")

## Configuration

Expand Down
40 changes: 20 additions & 20 deletions lib/util/contribution-types.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,26 @@ var defaultTypes = {
description: 'Documentation',
link: linkToCommits
},
eventOrganizing: {
symbol: '📋',
description: 'Event Organizing'
},
example: {
symbol: '💡',
description: 'Examples'
},
financial: {
symbol: '💵',
description: 'Financial'
},
fundingFinding: {
symbol: '🔍',
description: 'Funding Finding'
},
ideas: {
symbol: '🤔',
description: 'Ideas, Planning, & Feedback'
},
infra: {
symbol: '🚇',
description: 'Infrastructure (Hosting, Build-Tools, etc)'
Expand All @@ -58,37 +74,21 @@ var defaultTypes = {
description: 'Tests',
link: linkToCommits
},
translation: {
symbol: '🌍',
description: 'Translation'
},
tool: {
symbol: '🔧',
description: 'Tools'
},
translation: {
symbol: '🌍',
description: 'Translation'
},
tutorial: {
symbol: '✅',
description: 'Tutorials'
},
video: {
symbol: '📹',
description: 'Videos'
},
financial: {
symbol: '💵',
description: 'Financial'
},
fundingFinding: {
symbol: '🔍',
description: 'Funding Finding'
},
eventOrganizing: {
symbol: '📋',
description: 'Event Organizing'
},
ideas: {
symbol: '🤔',
description: 'Ideas, Planning, & Feedback'
}
};

Expand Down

0 comments on commit ce90946

Please sign in to comment.