Skip to content

Instantly share code, notes, and snippets.

@nolvuscodes
Created April 16, 2023 05:25
Show Gist options
  • Save nolvuscodes/1060f004c9de2ef90ce033e2ec3b68ca to your computer and use it in GitHub Desktop.
Save nolvuscodes/1060f004c9de2ef90ce033e2ec3b68ca to your computer and use it in GitHub Desktop.
Good commit emoji's and commit descriptions in javascript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
let EmojiCommit = [
    {
        emoji: "πŸŽ‰ INT COMMIT:",
        description: "Initial commit",
    },
    {
        emoji: "🎨 IMPROVE:",
        description: "Improving structure / format of the code",
    },
    {
        emoji: "⚑ PERFORMANCE:",
        description: "Improving performance",
    },
    {
        emoji: "πŸ”₯ REMOVE:",
        description: "Removing code or files",
    },
    {
        emoji: "πŸ› BUG:",
        description: "Fixing a bug",
    },
    {
        emoji: "πŸš‘ HOTFIX:",
        description: "Critical hotfix",
    },
    {
        emoji: "✨ NEW FEATURE:",
        description: "Introducing new features",
    },
    {
        emoji: "πŸ“ DOC:",
        description: "Doc related",
    },
    {
        emoji: "πŸš€ RELEASE:",
        description: "Releasing new version",
    },
    {
        emoji: "πŸ’„ UI:",
        description: "UI related ",
    },
    {
        emoji: "πŸ”’ SECURITY:",
        description: "Security related",
    },
    {
        emoji: "🍎 APPLE:",
        description: "Related to Apple",
    },
    {
        emoji: "🐧 LINUX:",
        description: "Related to Linux",
    },
    {
        emoji: "🏁 WINDOWS:",
        description: "Related to Windows",
    },
    {
        emoji: "πŸ€– ANDROID:",
        description: "Related to Android",
    },
    {
        emoji: "🍏 IOS:",
        description: "Related to IOS",
    },
    {
        emoji: "πŸ”– VERSION:",
        description: "Releasing / Version tags",
    },
    {
        emoji: "🚧 PROGRESS:",
        description: "Work in progress",
    },
    {
        emoji: "⬆️ DOWN DEP:",
        description: "Downgrading dependencies",
    },
    {
        emoji: "⬇️ UP DEP:",
        description: "Upgrading dependencies",
    },
    {
        emoji: "πŸ“Œ PIN DEP",
        description: "Pinning dependencies to specific versions",
    },
    {
        emoji: "πŸ”¨ REFACTOR:",
        description: "Refactoring code",
    },
    {
        emoji: "πŸ‹ DOCKER:",
        description: "Work about Docker",
    },
    {
        emoji: "☸️ K8S:",
        description: "Work about Kubernetes",
    },
    {
        emoji: "βž• ADD DEP:",
        description: "Adding a dependency",
    },
    {
        emoji: "βž– REMOVE DEP:",
        description: "Removing a dependency",
    },
    {
        emoji: "πŸ”§ CONFIG:",
        description: "Configuration files related",
    },
    {
        emoji: "✏️ TYPO:",
        description: "Fixing typos",
    },
    {
        emoji: "πŸ’© SHIT:",
        description: "Bad code / Shit in code",
    },
    {
        emoji: "βͺ REVERT:",
        description: "Reverting changes",
    },
    {
        emoji: "πŸ”€ MERGE:",
        description: "Merging branches",
    },
    {
        emoji: "πŸ“¦ PACK:",
        description: "Package related",
    },
    {
        emoji: "πŸ“ƒ LICENSE:",
        description: "Adding or updating license",
    },
    {
        emoji: "πŸ’₯ CHANGE:",
        description: "Introducing breaking changes",
    },
    {
        emoji: "🍱 ASSET:",
        description: "Adding or updating assets",
    },
    {
        emoji: "πŸ‘Œ UPDATE:",
        description: "Updating code due to code review changes",
    },
    {
        emoji: "β™Ώ A11Y",
        description: "Improving accessibility",
    },
    {
        emoji: "πŸ—„οΈ DB:",
        description: "Performing database related changes",
    },
    {
        emoji: "πŸ”‰ LOG:",
        description: "Adding logs",
    },
    {
        emoji: "πŸ”‡ LOG:",
        description: "Removing logs",
    },
    {
        emoji: "πŸ‘₯ CONTRIB:",
        description: "contributor(s) related",
    },
    {
        emoji: "🚸 IMPROVE:",
        description: "Improving user experience / usability",
    },
    {
        emoji: "πŸ“± RES:",
        description: "Working on responsive design",
    },
    {
        emoji: "βš—οΈ EXP:",
        description: "Experimenting new things",
    },
    {
        emoji: "πŸ” SEO:",
        description: "Improving SEO & Related",
    },
    {
        emoji: "🚩 FLAG:",
        description: "Adding, updating, or removing feature flags",
    },
    {
        emoji: "πŸ—‘οΈ DEP:",
        description: "Deprecating code that needs to be cleaned up",
    },
    {
        emoji: "πŸ§ͺ TEST:",
        description: "Testing related",
    },
    {
        emoji: "πŸ’« UPDATE:",
        description: "General update",
    },
    {
        emoji: "β†ͺ️ PATCH:",
        description: "Patch",
    },
    {
        emoji: "↩️ REVERT PATCH:",
        description: "Revert patch",
    },
    {
        emoji: "β›” DON'T:",
        description: "Don't touch code/file",
    },
    {
        emoji: "πŸ‘ DONE:",
        description: "Done",
    },
    {
        emoji: "πŸ‘Ž NOT DONE:",
        description: "Not Done",
    },
    {
        emoji: "πŸ“‹ CLIP:",
        description: "Code pasted",
    },
    {
        emoji: "πŸƒ ON:",
        description: "Working On It",
    },
    {
        emoji: "🧹 CLEAN:",
        description: "Cleaning Code",
    },
    {
        emoji: "πŸ†• NEW:",
        description: "Adding new file/folder",
    },
    {
        emoji: "πŸ” REVERT:",
        description: "Reverting changes",
    },
    {
        emoji: "βœ”οΈ PASS:",
        description: "Test passed",
    },
    {
        emoji: "❌ FAIL:",
        description: "Test failed",
    },
];
exports.default = EmojiCommit;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment