Skip to content

Instantly share code, notes, and snippets.

@comaniac
Last active November 20, 2019 19:06
Show Gist options
  • Save comaniac/5633095c2fc8ff2b081d93874ff78609 to your computer and use it in GitHub Desktop.
Save comaniac/5633095c2fc8ff2b081d93874ff78609 to your computer and use it in GitHub Desktop.
VSCode Settings for TVM
{
"python.pythonPath": "/usr/local/bin/python3",
"python.testing.nosetestArgs": [
"tests"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.promptToConfigure": false,
"python.linting.pylintEnabled": true,
"python.linting.pylintCategorySeverity.convention": "Warning",
"python.linting.pylintCategorySeverity.refactor": "Warning",
"python.linting.pylintCategorySeverity.warning": "Warning",
"python.linting.pylintArgs": [
"--rcfile",
"${workspaceRoot}/tests/lint/pylintrc"
],
"search.exclude": {
".vscode/": true,
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment