Corsa as LSP is not stable yet memory usage increases exponentially which creates memory pressure, this PR reverts it to Strada while still keeping Corsa for typecheck commands and CI <img width="1590" height="892" alt="image" src="https://github.com/user-attachments/assets/4377ecd5-a0dd-43d7-aeb7-9f8a34ea6c81" /> <img width="1646" height="878" alt="image" src="https://github.com/user-attachments/assets/f82f5075-7404-46be-97a2-3313649d028c" />
59 lines
1.5 KiB
JSON
59 lines
1.5 KiB
JSON
{
|
|
"editor.formatOnSave": false,
|
|
"files.eol": "\n",
|
|
"files.insertFinalNewline": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
"[typescript]": {
|
|
"editor.formatOnSave": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.addMissingImports": "always",
|
|
"source.organizeImports": "always"
|
|
}
|
|
},
|
|
"[javascript]": {
|
|
"editor.formatOnSave": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.addMissingImports": "always",
|
|
"source.organizeImports": "always"
|
|
}
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.formatOnSave": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.addMissingImports": "always",
|
|
"source.organizeImports": "always"
|
|
}
|
|
},
|
|
"[json]": {
|
|
"editor.formatOnSave": true
|
|
},
|
|
"javascript.format.enable": false,
|
|
"javascript.preferences.importModuleSpecifier": "non-relative",
|
|
"typescript.format.enable": false,
|
|
"cSpell.enableFiletypes": [
|
|
"!javascript",
|
|
"!json",
|
|
"!typescript",
|
|
"!typescriptreact",
|
|
"md",
|
|
"mdx"
|
|
],
|
|
"cSpell.words": [
|
|
"twentyhq"
|
|
],
|
|
"typescript.preferences.importModuleSpecifier": "non-relative",
|
|
"search.exclude": {
|
|
"**/.yarn": true
|
|
},
|
|
"eslint.debug": true,
|
|
"files.associations": {
|
|
".cursorrules": "markdown"
|
|
},
|
|
"jestrunner.codeLensSelector": "**/*.{test,spec,integration-spec}.{js,jsx,ts,tsx}",
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"typescript.experimental.useTsgo": false
|
|
}
|