Skip to content

Commit d001002

Browse files
committed
Disable editor quick suggestion
1 parent 9cd9146 commit d001002

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

browser-app/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@
3737
"editor.autoSave": "on",
3838
"editor.minimap.enabled": false,
3939
"editor.tabSize": 2,
40-
"editor.scrollBeyondLastLine": false
40+
"editor.scrollBeyondLastLine": false,
41+
"editor.quickSuggestions": {
42+
"other": false
43+
}
4144
}
4245
}
4346
},

electron-app/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@
4040
"editor.autoSave": "on",
4141
"editor.minimap.enabled": false,
4242
"editor.tabSize": 2,
43-
"editor.scrollBeyondLastLine": false
43+
"editor.scrollBeyondLastLine": false,
44+
"editor.quickSuggestions": {
45+
"other": false
46+
}
4447
}
4548
}
4649
},

0 commit comments

Comments
 (0)