فهرست منبع

chore(repo): Add VSCode recommended extension for conventional commits with pre-defined scopes (#2812)

David Höck 1 سال پیش
والد
کامیت
5bab39725a
3فایلهای تغییر یافته به همراه27 افزوده شده و 1 حذف شده
  1. 0 1
      .gitignore
  2. 5 0
      .vscode/extensions.json
  3. 22 0
      .vscode/settings.json

+ 0 - 1
.gitignore

@@ -18,7 +18,6 @@ docs/static/intro.js*
 docs/static/intro.css*
 docs/public
 docs/data/build.json
-.vscode/
 yarn-error.log
 e2e-common/ports.json
 

+ 5 - 0
.vscode/extensions.json

@@ -0,0 +1,5 @@
+{
+    "recommendations": [
+        "vivaxy.vscode-conventional-commits"
+    ]
+}

+ 22 - 0
.vscode/settings.json

@@ -0,0 +1,22 @@
+{
+    "conventionalCommits.scopes": [
+        "admin-ui",
+        "admin-ui-plugin",
+        "asset-server-plugin",
+        "cli",
+        "common",
+        "core",
+        "create",
+        "dev-server",
+        "elasticsearch-plugin",
+        "email-plugin",
+        "harden-plugin",
+        "job-queue-plugin",
+        "sentry-plugin",
+        "stellate-plugin",
+        "testing",
+        "ui-devkit",
+        "repo"
+    ],
+    "conventionalCommits.gitmoji": false
+}