2022-05-18 07:26:57 +00:00
|
|
|
{
|
2025-01-09 02:15:03 +00:00
|
|
|
"search.exclude": {
|
|
|
|
|
"**/dist": true,
|
|
|
|
|
"**/pnpm-lock.yaml": true,
|
2025-02-05 17:45:08 +00:00
|
|
|
"**/*.tsbuildinfo": true,
|
|
|
|
|
"**/*.next": true,
|
|
|
|
|
"**/*.turbo": true,
|
|
|
|
|
"**/web/docs/out": true
|
2025-01-09 02:15:03 +00:00
|
|
|
},
|
2022-05-18 07:26:57 +00:00
|
|
|
"commands.commands": [
|
|
|
|
|
{
|
|
|
|
|
"command": "terminals.runTerminals",
|
2025-11-27 14:32:28 +00:00
|
|
|
"text": "$(rocket) Start Hive",
|
2022-05-18 07:26:57 +00:00
|
|
|
"tooltip": "Start dev environment"
|
2025-11-27 14:32:28 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"command": "terminals.kill",
|
|
|
|
|
"text": "$(stop)",
|
|
|
|
|
"tooltip": "Stop dev environment"
|
2022-05-18 07:26:57 +00:00
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"files.associations": {
|
2025-11-11 21:20:31 +00:00
|
|
|
"*.env.template": "dotenv",
|
|
|
|
|
"*.css": "tailwindcss"
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
|
|
|
|
"editor.codeActionsOnSave": {
|
2023-12-11 07:40:00 +00:00
|
|
|
"source.organizeImports": "never"
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
2024-05-23 08:59:34 +00:00
|
|
|
"editor.acceptSuggestionOnCommitCharacter": false,
|
2022-05-18 07:26:57 +00:00
|
|
|
"eslint.format.enable": true,
|
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
|
|
|
"yaml.schemas": {
|
|
|
|
|
"https://json.schemastore.org/github-workflow.json": ".github/workflows/deploy.yaml"
|
|
|
|
|
},
|
2022-09-06 07:38:31 +00:00
|
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
2024-05-02 15:22:20 +00:00
|
|
|
"typescript.enablePromptUseWorkspaceTsdk": true,
|
2024-08-06 13:40:55 +00:00
|
|
|
"git.mergeEditor": false,
|
|
|
|
|
"tailwindCSS.experimental.classRegex": [
|
|
|
|
|
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"],
|
|
|
|
|
["cx\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"],
|
|
|
|
|
["cn\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"],
|
|
|
|
|
["clsx\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"]
|
2025-01-09 02:15:03 +00:00
|
|
|
],
|
|
|
|
|
"[typescript]": {
|
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
2025-10-29 15:03:50 +00:00
|
|
|
},
|
|
|
|
|
"[yaml]": {
|
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
|
|
|
},
|
|
|
|
|
"[rust]": {
|
|
|
|
|
"editor.defaultFormatter": "rust-lang.rust-analyzer"
|
2025-01-09 02:15:03 +00:00
|
|
|
}
|
2022-05-18 07:26:57 +00:00
|
|
|
}
|