Skip to content

Commit

Permalink
Use tabaqa extension to override settings
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Oct 18, 2024
1 parent 32b8e4d commit fd02f98
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 25 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ validators
.tmp
.npmrc
.vscode/launch.json
!.vscode/settings.json
.vscode/settings.json
.vscode/tasks.json

# Tests artifacts
Expand Down Expand Up @@ -82,4 +82,4 @@ packages/cli/.git-data.json
.last_build_unixsec
dictionary.dic

temp/
temp/
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"recommendations": [
"biomejs.biome",
"esbenp.prettier-vscode"
"esbenp.prettier-vscode",
"KalimahApps.tabaqa"
]
}
22 changes: 0 additions & 22 deletions .vscode/settings.json

This file was deleted.

23 changes: 23 additions & 0 deletions .vscode/tabaqa.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"root": true,
"settings": {
"window.title": "${activeEditorShort}${separator}${rootName}${separator}${profileName}${separator}[${activeRepositoryBranchName}]",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.biome": "explicit"
},
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[json]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[jsonc]": {
"editor.defaultFormatter": "biomejs.biome"
}
}
}

0 comments on commit fd02f98

Please sign in to comment.