Skip to content

Commit

Permalink
Merge pull request #132 from MKAbuMattar/dev
Browse files Browse the repository at this point in the history
chore: update version to 1.4.0 and modify icon tags to 'iconset'
  • Loading branch information
MKAbuMattar authored Dec 3, 2024
2 parents 9e757f0 + 1163875 commit 476e8cf
Show file tree
Hide file tree
Showing 15 changed files with 8,104 additions and 29 deletions.
14 changes: 14 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"aaron-bond.better-comments",
"biomejs.biome",
"usernamehw.errorlens",
"wayou.vscode-todo-highlight",
"Gruntfuggly.todo-tree"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
}
115 changes: 115 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
{
"editor.formatOnSave": true,
"editor.wordWrapColumn": 80,
"explorer.compactFolders": false,
"todohighlight.keywords": [
{
"text": "TODO:",
"color": "#fff",
"backgroundColor": "#ffbd2a",
"overviewRulerColor": "rgba(255,189,42,0.8)"
},
{
"text": "FIXME:",
"color": "#fff",
"backgroundColor": "#f06292",
"overviewRulerColor": "rgba(240,98,146,0.8)"
},
{
"text": "DEBUG:",
"color": "#fff",
"backgroundColor": "#f44336",
"overviewRulerColor": "rgba(244, 67, 54, 0.8)"
},
{
"text": "REVIEW:",
"color": "#fff",
"backgroundColor": "#4caf50",
"overviewRulerColor": "rgba(76,175,80,0.8)"
},
{
"text": "TESTED:",
"color": "#fff",
"backgroundColor": "#2196f3",
"overviewRulerColor": "rgba(33, 150, 243, 0.8)"
},
{
"text": "NOTE:",
"color": "#fff",
"backgroundColor": "#9e9e9e",
"overviewRulerColor": "rgba(158, 158, 158, 0.8)"
},
{
"text": "INFO:",
"color": "#fff",
"backgroundColor": "#009688",
"overviewRulerColor": "rgba(0, 150, 136, 0.8)"
},
{
"text": "DONE:",
"color": "#fff",
"backgroundColor": "#7e57c2",
"overviewRulerColor": "rgba(126, 87, 194, 0.8)"
}
],
"todo-tree.general.tags": [
"TODO",
"FIXME",
"DEBUG",
"REVIEW",
"TESTED",
"NOTE",
"INFO",
"DONE"
],
"todo-tree.highlights.customHighlight": {
"TODO": {
"icon": "check-circle",
"iconColour": "#ffbd2a"
},
"FIXME": {
"icon": "flame",
"iconColour": "#f06292"
},
"DEBUG": {
"icon": "bug",
"iconColour": "#f44336"
},
"REVIEW": {
"icon": "eye",
"iconColour": "#4caf50"
},
"TESTED": {
"icon": "check",
"iconColour": "#2196f3"
},
"NOTE": {
"icon": "info",
"iconColour": "#9e9e9e"
},
"INFO": {
"icon": "info",
"iconColour": "#009688"
},
"DONE": {
"icon": "check-circle",
"iconColour": "#7e57c2"
}
},
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)",
"editor.defaultFormatter": "biomejs.biome",
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit",
"source.organizeImports.biome": "explicit",
"source.fixAll": "explicit"
},
"json.schemas": [
{
"url": "https://cdn.jsdelivr.net/npm/tsup/schema.json",
"fileMatch": ["package.json", "tsup.config.json"]
}
],
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
}
}
File renamed without changes.
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"dependencies": {
"@devicons-react/beta": "npm:[email protected]",
"@devicons-react/latest": "npm:devicons-react@1.3.0",
"@devicons-react/latest": "npm:devicons-react@1.4.0",
"highlight.js": "11.10.0",
"next": "15.0.3",
"next-pwa": "5.6.0",
Expand Down
10 changes: 5 additions & 5 deletions docs/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/src/assets/data/icons.beta.json
Original file line number Diff line number Diff line change
Expand Up @@ -1587,7 +1587,7 @@
{
"name": "Devicons React Original",
"componentName": "DeviconsReactOriginal",
"tags": ["icon", "react"]
"tags": ["iconset"]
},
{
"name": "Digitalocean Original",
Expand Down
2 changes: 1 addition & 1 deletion docs/src/assets/data/icons.latest.json
Original file line number Diff line number Diff line change
Expand Up @@ -1432,7 +1432,7 @@
{
"name": "Devicons React Original",
"componentName": "DeviconsReactOriginal",
"tags": ["javascript", "rust", "runtime"]
"tags": ["iconset"]
},
{
"name": "Digitalocean Original",
Expand Down
2 changes: 1 addition & 1 deletion docs/src/assets/data/icons.v1.2.6.json
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@
{
"name": "Devicons React Original",
"componentName": "DeviconsReactOriginal",
"tags": ["javascript", "rust", "language"]
"tags": ["iconset"]
},
{
"name": "Digitalocean Original",
Expand Down
Loading

0 comments on commit 476e8cf

Please sign in to comment.