mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
28 lines
768 B
JSON
28 lines
768 B
JSON
|
{
|
||
|
"editor.tabSize": 4,
|
||
|
// Otherwise Mac users get 200% CPU usage
|
||
|
"files.useExperimentalFileWatcher": true,
|
||
|
"files.exclude": {
|
||
|
"**/.git": true,
|
||
|
"dev-env/lib/*": true,
|
||
|
"buck-out/*": true,
|
||
|
"bazel-*/*": true,
|
||
|
},
|
||
|
"search.exclude": {
|
||
|
"**/.stack-work": true,
|
||
|
"**/*.hi": true,
|
||
|
"**/*.dyn_hi": true,
|
||
|
"**/workspaces/*": true,
|
||
|
"dev-env/lib/*": true,
|
||
|
"buck-out/*": true,
|
||
|
"bazel-*/*": true,
|
||
|
},
|
||
|
"[restructuredtext]": {
|
||
|
"editor.wordWrap": "wordWrapColumn",
|
||
|
"editor.wordWrapColumn": 80
|
||
|
},
|
||
|
"python.linting.pylintEnabled": false,
|
||
|
"diffEditor.ignoreTrimWhitespace": false,
|
||
|
"python.pythonPath": "${workspaceFolder}/dev-env/bin/python"
|
||
|
}
|