mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 22:10:15 +03:00
2d39e644b8
This PR adds support for the new Vue-based GUI (aka `gui2`). The user-facing changes are primarily: * support for `./run gui2` and `./run ide2` commands (that build just the new GUI and the whole IDE package with new GUI embedded — respectively); * the top-level `test` and `lint` commands will now invoke the relevant commands on the new GUI --------- Co-authored-by: Paweł Grabarz <frizi09@gmail.com>
28 lines
703 B
JSON
28 lines
703 B
JSON
{
|
|
"rust-analyzer.linkedProjects": [
|
|
"./app/gui2/rust-ffi/Cargo.toml"
|
|
],
|
|
"vue.complete.casing.status": false,
|
|
"vue.complete.casing.props": "camel",
|
|
"vue.complete.casing.tags": "pascal",
|
|
"auto-snippets.snippets": [
|
|
{
|
|
"language": "vue",
|
|
"snippet": "Vue single-file component"
|
|
}
|
|
],
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"eslint.experimental.useFlatConfig": true,
|
|
"eslint.useESLintClass": true,
|
|
"[javascript][typescript][typescriptreact][vue]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
},
|
|
"eslint.workingDirectories": [
|
|
"./app/gui2",
|
|
"./app/gui2/ide-desktop"
|
|
],
|
|
"files.watcherExclude": {
|
|
"**/target": true
|
|
}
|
|
}
|