diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c6f9a44 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index a8d6186..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "vsicons.presets.angular": false -} \ No newline at end of file diff --git a/snippets/git-commit.json b/snippets/git-commit.json index 99cd2fd..777cdf9 100644 --- a/snippets/git-commit.json +++ b/snippets/git-commit.json @@ -4,17 +4,13 @@ "body": ":art: improve $1" }, "⚑️ Improving performance": { - "prefix": "gm update performance", + "prefix": "gm improve performance", "body": ":zap: improve $1" }, - "πŸ”₯ Removing code": { + "πŸ”₯ Removing code or files": { "prefix": "gm remove code", "body": ":fire: remove $1" }, - "πŸ”₯ Removing files": { - "prefix": "gm remove file", - "body": ":fire: remove $1" - }, "πŸ› Fixing a bug": { "prefix": "gm fix bug", "body": ":bug: fix $1" @@ -29,22 +25,22 @@ }, "πŸ“ Writing docs": { "prefix": "gm add update doc", - "body": ":memo: $1" + "body": ":pencil: $1" }, "πŸš€ Deploying stuff": { "prefix": "gm release deploy", "body": ":rocket: $1" }, "πŸ’„ Updating the UI and style files": { - "prefix": "gm update file", + "prefix": "gm update UI & style files", "body": ":lipstick: update $1" }, "πŸŽ‰ Initial commit": { - "prefix": "gm initial commit release", + "prefix": "gm initial commit", "body": ":tada: initial commit $1" }, - "βœ… Adding tests": { - "prefix": "gm add test", + "βœ… Updating tests": { + "prefix": "gm add/update tests", "body": ":white_check_mark: $1" }, "πŸ”’ Fixing security issues": { @@ -87,13 +83,17 @@ "prefix": "gm fix ci build", "body": ":green_heart: $1" }, + "⬇️ Downgrading dependencies": { + "prefix": "gm downgrade dependency", + "body": ":arrow_down: $1" + }, "⬆️ Upgrading dependencies": { "prefix": "gm update dependency", "body": ":arrow_up: $1" }, - "⬇️ Downgrading dependencies": { - "prefix": "gm update dependency", - "body": ":arrow_down: $1" + "πŸ“Œ Pinning dependencies to specific versions": { + "prefix": "gm pinning dependencies", + "body": ":pushpin: pinning $1" }, "πŸ‘· Adding CI build system": { "prefix": "gm add ci build", @@ -103,13 +103,9 @@ "prefix": "gm add analytics tracking code", "body": ":chart_with_upwards_trend: add $1" }, - "πŸ”¨ Refactoring code": { + "♻️ Refactoring code": { "prefix": "gm update code", - "body": ":hammer: refactor $1" - }, - "βž– Removing a dependency": { - "prefix": "gm remove dependency", - "body": ":heavy_minus_sign: remove $1" + "body": ":recycle: refactor $1" }, "🐳 Work about Docker": { "prefix": "gm work docker", @@ -119,6 +115,10 @@ "prefix": "gm add dependency", "body": ":heavy_plus_sign: add $1" }, + "βž– Removing a dependency": { + "prefix": "gm remove dependency", + "body": ":heavy_minus_sign: remove $1" + }, "πŸ”§ Changing configuration files": { "prefix": "gm update file config", "body": ":wrench: update $1" @@ -148,7 +148,7 @@ "body": ":package: $1" }, "πŸ‘½ Updating code due to external API changes": { - "prefix": "gm update code", + "prefix": "gm update code API", "body": ":alien: update $1" }, "🚚 Moving files": { @@ -180,11 +180,11 @@ "body": ":bento: update $1" }, "πŸ‘Œ Updating code due to code review changes": { - "prefix": "gm update code", + "prefix": "gm update code review", "body": ":ok_hand: update $1" }, "♿️ Improving accessibility": { - "prefix": "gm improve accessibility", + "prefix": "gm improve a11y accessibility", "body": ":wheelchair: improve $1" }, "πŸ’‘ Documenting source code": { @@ -234,5 +234,77 @@ "🀑 Mocking things": { "prefix": "gm mocking", "body": ":clown_face: mock $1" + }, + "πŸ₯š Adding an easter egg": { + "prefix": "gm easter egg", + "body": ":egg: add $1" + }, + "πŸ™ˆ Adding or updating a .gitignore file": { + "prefix": "gm ignore file", + "body": ":see_no_evil: ignore $1" + }, + "πŸ“Έ Adding snapshots": { + "prefix": "gm add snapshot", + "body": ":camera_flash: add $1" + }, + "πŸ“Έ Updating snapshots": { + "prefix": "gm update snapshot", + "body": ":camera_flash: update $1" + }, + "βš— Experimenting new things": { + "prefix": "gm experimental", + "body": ":alembic: $1" + }, + "πŸ” Improving SEO": { + "prefix": "gm improve seo", + "body": ":mag: $1" + }, + "☸️ Work about Kubernetes": { + "prefix": "gm kubernetes", + "body": ":wheel_of_dharma: $1" + }, + "🏷️ Adding types (Flow, TypeScript)": { + "prefix": "gm add types", + "body": ":label: add $1" + }, + "🏷️ Updating types (Flow, TypeScript)": { + "prefix": "gm update types", + "body": ":label: update $1" + }, + "🌱 Adding seed files": { + "prefix": "gm add seed", + "body": ":seedling: add $1" + }, + "🌱 Updating seed files": { + "prefix": "gm update seed", + "body": ":seedling: update $1" + }, + "🚩 Adding feature flags": { + "prefix": "gm add feature flag", + "body": ":triangular_flag_on_post: add $1" + }, + "🚩 Updating feature flags": { + "prefix": "gm update feature flag", + "body": ":triangular_flag_on_post: update $1" + }, + "🚩 Removing feature flags": { + "prefix": "gm remove feature flag", + "body": ":triangular_flag_on_post: remove $1" + }, + "πŸ₯… Catching errors": { + "prefix": "gm catch error", + "body": ":goal_net: catch $1" + }, + "πŸ’« Adding animations and transitions": { + "prefix": "gm add animation transition", + "body": ":dizzy: add $1" + }, + "πŸ’« Updating animations and transitions": { + "prefix": "gm update animation transition", + "body": ":dizzy: update $1" + }, + "πŸ—‘ Deprecating code that needs to be cleaned up": { + "prefix": "gm deprecate code", + "body": ":wastebasket: deprecate $1" } }