-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.json
43 lines (43 loc) · 1.43 KB
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
// Controls if quick suggestions should show up while typing
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
// Controls if suggestions should be accepted on 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions. The value 'smart' means only accept a suggestion with Enter when it makes a textual change
"editor.acceptSuggestionOnEnter": "on",
// Controls the delay in ms after which quick suggestions will show up.
"editor.quickSuggestionsDelay": 10,
// Controls if suggestions should automatically show up when typing trigger characters
"editor.suggestOnTriggerCharacters": true,
// Enable word based suggestions
"editor.wordBasedSuggestions": true,
// Enable parameter hints
"editor.parameterHints": true,
"files.useExperimentalFileWatcher": true,
"files.exclude": {
"/.git": true,
"/.DS_Store": true,
"**/node_modules": true,
"**/eosio_docker/data": true
},
"search.exclude": {
"/node_modules": true
},
"files.watcherExclude": {
"**/node_modules/**": true,
"**/eosio_docker/data/**": true
},
"clang-format.executable": "${env.CLANG_EXECUTABLE}",
"prettier.eslintIntegration": true,
"eslint.packageManager": "yarn",
"[python]": {
"editor.rulers": [120]
},
"[javascript]": {
"editor.formatOnSave": false,
"editor.formatOnType": true,
"editor.rulers": [120]
}
}