-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #132 from MKAbuMattar/dev
chore: update version to 1.4.0 and modify icon tags to 'iconset'
- Loading branch information
Showing
15 changed files
with
8,104 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.