daml/.vscode/settings.json
Digital Asset GmbH 05e691f558 open-sourcing daml
2019-04-04 09:33:38 +01:00

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"
}