forked from seatonjiang/gitmoji-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
65af291
commit 9a9cb7f
Showing
2 changed files
with
378 additions
and
580 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,378 @@ | ||
// Links: https://github.com/carloscuesta/gitmoji/blob/master/src/data/gitmojis.json | ||
import * as vscode from 'vscode'; | ||
|
||
interface gitmojiList { | ||
readonly emoji: any; | ||
readonly code: any; | ||
readonly description: any; | ||
} | ||
|
||
let Gitmoji: Array<gitmojiList> = [ | ||
{ | ||
emoji: 'π¨', | ||
code: ':art:', | ||
description: vscode.l10n.t('Improve structure/format of the code'), | ||
}, | ||
{ | ||
emoji: 'β‘οΈ', | ||
code: ':zap:', | ||
description: vscode.l10n.t('Improve performance'), | ||
}, | ||
{ | ||
emoji: 'π₯', | ||
code: ':fire:', | ||
description: vscode.l10n.t('Remove code or files'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':bug:', | ||
description: vscode.l10n.t('Fix a bug'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':ambulance:', | ||
description: vscode.l10n.t('Critical hotfix'), | ||
}, | ||
{ | ||
emoji: 'β¨', | ||
code: ':sparkles:', | ||
description: vscode.l10n.t('Introduce new features'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':memo:', | ||
description: vscode.l10n.t('Add or update documentation'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':rocket:', | ||
description: vscode.l10n.t('Deploy stuff'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':lipstick:', | ||
description: vscode.l10n.t('Add or update the UI and style files'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':tada:', | ||
description: vscode.l10n.t('Begin a project'), | ||
}, | ||
{ | ||
emoji: 'β ', | ||
code: ':white_check_mark:', | ||
description: vscode.l10n.t('Add, update, or pass tests'), | ||
}, | ||
{ | ||
emoji: 'ποΈ', | ||
code: ':lock:', | ||
description: vscode.l10n.t('Fix security issues'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':closed_lock_with_key:', | ||
description: vscode.l10n.t('Add or update secrets'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':bookmark:', | ||
description: vscode.l10n.t('Release/Version tags'), | ||
}, | ||
{ | ||
emoji: 'π¨', | ||
code: ':rotating_light:', | ||
description: vscode.l10n.t('Fix compiler/linter warnings'), | ||
}, | ||
{ | ||
emoji: 'π§', | ||
code: ':construction:', | ||
description: vscode.l10n.t('Work in progress'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':green_heart:', | ||
description: vscode.l10n.t('Fix CI Build'), | ||
}, | ||
{ | ||
emoji: 'β¬οΈ', | ||
code: ':arrow_down:', | ||
description: vscode.l10n.t('Downgrade dependencies'), | ||
}, | ||
{ | ||
emoji: 'β¬οΈ', | ||
code: ':arrow_up:', | ||
description: vscode.l10n.t('Upgrade dependencies'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':pushpin:', | ||
description: vscode.l10n.t('Pin dependencies to specific versions'), | ||
}, | ||
{ | ||
emoji: 'π·', | ||
code: ':construction_worker:', | ||
description: vscode.l10n.t('Add or update CI build system'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':chart_with_upwards_trend:', | ||
description: vscode.l10n.t('Add or update analytics or track code'), | ||
}, | ||
{ | ||
emoji: 'β»οΈ', | ||
code: ':recycle:', | ||
description: vscode.l10n.t('Refactor code'), | ||
}, | ||
{ | ||
emoji: 'β', | ||
code: ':heavy_plus_sign:', | ||
description: vscode.l10n.t('Add a dependency'), | ||
}, | ||
{ | ||
emoji: 'β', | ||
code: ':heavy_minus_sign:', | ||
description: vscode.l10n.t('Remove a dependency'), | ||
}, | ||
{ | ||
emoji: 'π§', | ||
code: ':wrench:', | ||
description: vscode.l10n.t('Add or update configuration files'), | ||
}, | ||
{ | ||
emoji: 'π¨', | ||
code: ':hammer:', | ||
description: vscode.l10n.t('Add or update development scripts'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':globe_with_meridians:', | ||
description: vscode.l10n.t('Internationalization and localization'), | ||
}, | ||
{ | ||
emoji: 'βοΈ', | ||
code: ':pencil2:', | ||
description: vscode.l10n.t('Fix typos'), | ||
}, | ||
{ | ||
emoji: 'π©', | ||
code: ':poop:', | ||
description: vscode.l10n.t('Write bad code that needs to be improved'), | ||
}, | ||
{ | ||
emoji: 'βͺ', | ||
code: ':rewind:', | ||
description: vscode.l10n.t('Revert changes'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':twisted_rightwards_arrows:', | ||
description: vscode.l10n.t('Merge branches'), | ||
}, | ||
{ | ||
emoji: 'π¦', | ||
code: ':package:', | ||
description: vscode.l10n.t('Add or update compiled files or packages'), | ||
}, | ||
{ | ||
emoji: 'π½οΈ', | ||
code: ':alien:', | ||
description: vscode.l10n.t('Update code due to external API changes'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':truck:', | ||
description: vscode.l10n.t('Move or rename resources (e.g.: files, paths, routes)'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':page_facing_up:', | ||
description: vscode.l10n.t('Add or update license'), | ||
}, | ||
{ | ||
emoji: 'π₯', | ||
code: ':boom:', | ||
description: vscode.l10n.t('Introduce breaking changes'), | ||
}, | ||
{ | ||
emoji: 'π±', | ||
code: ':bento:', | ||
description: vscode.l10n.t('Add or update assets'), | ||
}, | ||
{ | ||
emoji: 'βΏοΈ', | ||
code: ':wheelchair:', | ||
description: vscode.l10n.t('Improve accessibility'), | ||
}, | ||
{ | ||
emoji: 'π‘', | ||
code: ':bulb:', | ||
description: vscode.l10n.t('Add or update comments in source code'), | ||
}, | ||
{ | ||
emoji: 'π»', | ||
code: ':beers:', | ||
description: vscode.l10n.t('Write code drunkenly'), | ||
}, | ||
{ | ||
emoji: 'π¬', | ||
code: ':speech_balloon:', | ||
description: vscode.l10n.t('Add or update text and literals'), | ||
}, | ||
{ | ||
emoji: 'ποΈ', | ||
code: ':card_file_box:', | ||
description: vscode.l10n.t('Perform database related changes'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':loud_sound:', | ||
description: vscode.l10n.t('Add or update logs'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':mute:', | ||
description: vscode.l10n.t('Remove logs'), | ||
}, | ||
{ | ||
emoji: 'π₯', | ||
code: ':busts_in_silhouette:', | ||
description: vscode.l10n.t('Add or update contributor(s)'), | ||
}, | ||
{ | ||
emoji: 'πΈ', | ||
code: ':children_crossing:', | ||
description: vscode.l10n.t('Improve user experience/usability'), | ||
}, | ||
{ | ||
emoji: 'ποΈ', | ||
code: ':building_construction:', | ||
description: vscode.l10n.t('Make architectural changes'), | ||
}, | ||
{ | ||
emoji: 'π±', | ||
code: ':iphone:', | ||
description: vscode.l10n.t('Work on responsive design'), | ||
}, | ||
{ | ||
emoji: 'π€‘', | ||
code: ':clown_face:', | ||
description: vscode.l10n.t('Mock things'), | ||
}, | ||
{ | ||
emoji: 'π₯', | ||
code: ':egg:', | ||
description: vscode.l10n.t('Add or update an easter egg'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':see_no_evil:', | ||
description: vscode.l10n.t('Add or update a .gitignore file'), | ||
}, | ||
{ | ||
emoji: 'πΈ', | ||
code: ':camera_flash:', | ||
description: vscode.l10n.t('Add or update snapshots'), | ||
}, | ||
{ | ||
emoji: 'βοΈ', | ||
code: ':alembic:', | ||
description: vscode.l10n.t('Perform experiments'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':mag:', | ||
description: vscode.l10n.t('Improve SEO'), | ||
}, | ||
{ | ||
emoji: 'π·οΈ', | ||
code: ':label:', | ||
description: vscode.l10n.t('Add or update types'), | ||
}, | ||
{ | ||
emoji: 'π±', | ||
code: ':seedling:', | ||
description: vscode.l10n.t('Add or update seed files'), | ||
}, | ||
{ | ||
emoji: 'π©', | ||
code: ':triangular_flag_on_post:', | ||
description: vscode.l10n.t('Add, update, or remove feature flags'), | ||
}, | ||
{ | ||
emoji: 'π₯ ', | ||
code: ':goal_net:', | ||
description: vscode.l10n.t('Catch errors'), | ||
}, | ||
{ | ||
emoji: 'π«', | ||
code: ':dizzy:', | ||
description: vscode.l10n.t('Add or update animations and transitions'), | ||
}, | ||
{ | ||
emoji: 'ποΈ', | ||
code: ':wastebasket:', | ||
description: vscode.l10n.t('Deprecate code that needs to be cleaned up'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':passport_control:', | ||
description: vscode.l10n.t('Work on code related to authorization, roles and permissions'), | ||
}, | ||
{ | ||
emoji: 'π©Ή', | ||
code: ':adhesive_bandage:', | ||
description: vscode.l10n.t('Simple fix for a non-critical issue'), | ||
}, | ||
{ | ||
emoji: 'π§', | ||
code: ':monocle_face:', | ||
description: vscode.l10n.t('Data exploration/inspection'), | ||
}, | ||
{ | ||
emoji: 'β°οΈ', | ||
code: ':coffin:', | ||
description: vscode.l10n.t('Remove dead code'), | ||
}, | ||
{ | ||
emoji: 'π§ͺ', | ||
code: ':test_tube:', | ||
description: vscode.l10n.t('Add a failing test'), | ||
}, | ||
{ | ||
emoji: 'π', | ||
code: ':necktie:', | ||
description: vscode.l10n.t('Add or update business logic'), | ||
}, | ||
{ | ||
emoji: 'π©Ί', | ||
code: ':stethoscope:', | ||
description: vscode.l10n.t('Add or update healthcheck'), | ||
}, | ||
{ | ||
emoji: 'π§±', | ||
code: ':bricks:', | ||
description: vscode.l10n.t('Infrastructure related changes'), | ||
}, | ||
{ | ||
emoji: 'π§βπ»', | ||
code: ':technologist:', | ||
description: vscode.l10n.t('Improve developer experience'), | ||
}, | ||
{ | ||
emoji: 'πΈ', | ||
code: ':money_with_wings:', | ||
description: vscode.l10n.t('Add sponsorships or money related infrastructure'), | ||
}, | ||
{ | ||
emoji: 'π§΅', | ||
code: ':thread:', | ||
description: vscode.l10n.t('Add or update code related to multithreading or concurrency'), | ||
}, | ||
{ | ||
emoji: 'π¦Ί', | ||
code: ':safety_vest:', | ||
description: vscode.l10n.t('Add or update code related to validation'), | ||
}, | ||
]; | ||
|
||
export default Gitmoji; |
Oops, something went wrong.