mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
5234f8a544
* Update .vscode/settings.json The "files.useExperimentalFileWatcher" setting was deprecated at some point. I tried to add "files.watcherExcluded" to see if this will help with the extreme CPU usage issues on macOS. Also removed the "buck" exclusions since we don't use buck anymore as far as I know. And I added node_modules exclusions because that seems like a sensible thing to exclude. changelog_begin changelog_end * make it valid JSON
38 lines
1020 B
JSON
38 lines
1020 B
JSON
{
|
|
"editor.tabSize": 4,
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"dev-env/lib/*": true,
|
|
"bazel-*/*": true,
|
|
".bazel-cache/*": true,
|
|
"**/node_modules/*": true
|
|
},
|
|
"files.watcherExclude": {
|
|
"**/.stack-work": true,
|
|
"**/*.hi": true,
|
|
"**/*.dyn_hi": true,
|
|
"**/workspaces/*": true,
|
|
"**/.git": true,
|
|
"dev-env/lib/*": true,
|
|
"bazel-*/*": true,
|
|
".bazel-cache/*": true,
|
|
"**/node_modules/*": true
|
|
},
|
|
"search.exclude": {
|
|
"**/.stack-work": true,
|
|
"**/*.hi": true,
|
|
"**/*.dyn_hi": true,
|
|
"**/workspaces/*": true,
|
|
"dev-env/lib/*": true,
|
|
"bazel-*/*": true,
|
|
".bazel-cache": true
|
|
},
|
|
"[restructuredtext]": {
|
|
"editor.wordWrap": "wordWrapColumn",
|
|
"editor.wordWrapColumn": 80
|
|
},
|
|
"python.linting.pylintEnabled": false,
|
|
"diffEditor.ignoreTrimWhitespace": false,
|
|
"python.pythonPath": "${workspaceFolder}/dev-env/bin/python"
|
|
}
|