forked from xforceai/ide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathide.code-workspace
More file actions
24 lines (24 loc) · 883 Bytes
/
ide.code-workspace
File metadata and controls
24 lines (24 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"folders": [
{
"name": "ide",
"path": "."
}
],
"settings": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "always"
},
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
"javascript.preferences.importModuleSpecifier": "non-relative",
"javascript.preferences.importModuleSpecifierEnding": "minimal",
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.preferences.importModuleSpecifierEnding": "minimal",
"typescript.updateImportsOnFileMove.enabled": "always",
"cSpell.words": ["esbenp", "nextjs", "OPENAI", "partialize", "reactflow", "zustand"]
}
}