Created
April 16, 2019 07:42
-
-
Save popunbom/0e870a1dbe027d884af449fb4cf02ae4 to your computer and use it in GitHub Desktop.
[VSCode] settings.json : Python 補完を強化する
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": "Python 実行ファイルへのパス (例: /Users/popunbom/.pyenv/shims/python3)", | |
| "python.autoComplete.addBrackets": true, | |
| "python.autoComplete.extraPaths": [ | |
| "使用したい Python バージョンの site-package ディレクトリへのパス (例: /Users/popunbom/.pyenv/versions/3.6.5/Python.framework/Versions/3.6/lib/python3.6/site-packages)" | |
| ], | |
| "python.linting.pylintArgs": [ | |
| "--ignored-modules=numpy,cv2,matplotlib", | |
| "--ignored-classes=numpy,cv2,matplotlib", | |
| "--extension-pkg-whitelist=numpy,cv2,matplotlib" | |
| ], | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment