Last active
November 20, 2019 19:06
-
-
Save comaniac/5633095c2fc8ff2b081d93874ff78609 to your computer and use it in GitHub Desktop.
VSCode Settings for TVM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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