-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
chore: update tools.json #4306
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: update tools.json #4306
Changes from all commits
c12b155
b5c83a5
0396b73
6c79703
b98fbaf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -178,12 +178,12 @@ | |
| "borderColor": "border-[#B9012b]" | ||
| }, | ||
| { | ||
| "name": "Socket.IO", | ||
| "name": "TypeScript", | ||
| "color": "bg-[#61d0f2]", | ||
| "borderColor": "border-[#40ccf7]" | ||
| }, | ||
| { | ||
| "name": "TypeScript", | ||
| "name": "Socket.IO", | ||
| "color": "bg-[#61d0f2]", | ||
| "borderColor": "border-[#40ccf7]" | ||
| }, | ||
|
|
@@ -222,6 +222,11 @@ | |
| "color": "bg-[#61d0f2]", | ||
| "borderColor": "border-[#40ccf7]" | ||
| }, | ||
| { | ||
| "name": "Go", | ||
| "color": "bg-[#61d0f2]", | ||
| "borderColor": "border-[#40ccf7]" | ||
| }, | ||
| { | ||
| "name": "Markdown", | ||
| "color": "bg-[#61d0f2]", | ||
|
|
@@ -273,12 +278,12 @@ | |
| "borderColor": "border-[#40ccf7]" | ||
| }, | ||
| { | ||
| "name": "SmartPaste", | ||
| "name": "JetBrains", | ||
| "color": "bg-[#61d0f2]", | ||
| "borderColor": "border-[#40ccf7]" | ||
| }, | ||
| { | ||
| "name": "JetBrains", | ||
| "name": "SmartPaste", | ||
| "color": "bg-[#61d0f2]", | ||
| "borderColor": "border-[#40ccf7]" | ||
| }, | ||
|
Comment on lines
+281
to
289
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Duplicate “SmartPaste” and “JetBrains” tags still present. Even after the rename, another 🤖 Prompt for AI Agents |
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Inconsistent naming: “Go” vs “Go/Golang”.
Languages array already contains
"Go/Golang"(Line 4). Introducing"Go"as a technology tag will break any consumer code that relies on strict-equality matching of tag names betweenlanguagesandtechnologies. Align the name (and optionally unify the colours) to avoid hard-to-track filter mismatches.🤖 Prompt for AI Agents