mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-09 13:36:29 +00:00
feat: reorder contributions keys (#50)
* chore: reorder contributions keys * chore: re-order keys here too
This commit is contained in:
parent
e5bd3b4c70
commit
ce909467e6
2 changed files with 35 additions and 35 deletions
30
README.md
30
README.md
|
@ -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)):
|
||||
- code: [💻](# "Code")
|
||||
- plugin: [🔌](# "Plugin/utility libraries")
|
||||
- tool: [🔧](# "Tools")
|
||||
- infra: [🚇](# "Infrastructure (Hosting, Build-Tools, etc)")
|
||||
- doc: [📖](# "Documentation")
|
||||
- translation: [🌍](# "Translation")
|
||||
- question: [💬](# "Answering Questions")
|
||||
- test: [⚠️](# "Tests")
|
||||
- bug: [🐛](# "Bug reports")
|
||||
- example: [💡](# "Examples")
|
||||
- blog: [📝](# "Blogposts")
|
||||
- tutorial: [✅](# "Tutorials")
|
||||
- video: [📹](# "Videos")
|
||||
- talk: [📢](# "Talks")
|
||||
- bug: [🐛](# "Bug reports")
|
||||
- code: [💻](# "Code")
|
||||
- design: [🎨](# "Design")
|
||||
- review: [👀](# "Reviewed Pull Requests")
|
||||
- doc: [📖](# "Documentation")
|
||||
- eventOrganizing: [📋](# "Event Organizing")
|
||||
- example: [💡](# "Examples")
|
||||
- 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
|
||||
|
||||
|
|
|
@ -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)'
|
||||
|
@ -58,14 +74,14 @@ var defaultTypes = {
|
|||
description: 'Tests',
|
||||
link: linkToCommits
|
||||
},
|
||||
translation: {
|
||||
symbol: '🌍',
|
||||
description: 'Translation'
|
||||
},
|
||||
tool: {
|
||||
symbol: '🔧',
|
||||
description: 'Tools'
|
||||
},
|
||||
translation: {
|
||||
symbol: '🌍',
|
||||
description: 'Translation'
|
||||
},
|
||||
tutorial: {
|
||||
symbol: '✅',
|
||||
description: 'Tutorials'
|
||||
|
@ -73,22 +89,6 @@ var defaultTypes = {
|
|||
video: {
|
||||
symbol: '📹',
|
||||
description: 'Videos'
|
||||
},
|
||||
financial: {
|
||||
symbol: '💵',
|
||||
description: 'Financial'
|
||||
},
|
||||
fundingFinding: {
|
||||
symbol: '🔍',
|
||||
description: 'Funding Finding'
|
||||
},
|
||||
eventOrganizing: {
|
||||
symbol: '📋',
|
||||
description: 'Event Organizing'
|
||||
},
|
||||
ideas: {
|
||||
symbol: '🤔',
|
||||
description: 'Ideas, Planning, & Feedback'
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue