実現したいこと
VScodeで補完が出ない、lintされないので解決したいです。
settings.json
json
1{ 2 "editor.glyphMargin": false, 3 "editor.suggestSelection": "first", 4 "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", 5 "java.home": "C:\Program Files\Java\jdk-16.0.1", 6 "files.exclude": { 7 "**/.classpath": true, 8 "**/.project": true, 9 "**/.settings": true, 10 "**/.factorypath": true 11 }, 12 "workbench.editorAssociations": { 13 "*.ipynb": "jupyter-notebook" 14 }, 15 "python.languageServer": "Default", 16 "python.autoComplete.extraPaths": [ 17 "/home/myuser/.conda/envs/py3.9/lib/python3.9/site-packages/" 18 ], 19 "workbench.welcomePage.hiddenCategories": [ 20 "Setup", 21 "Beginner" 22 ], 23 "notebook.cellToolbarLocation": { 24 "default": "right", 25 "jupyter-notebook": "left" 26 }, 27 "git.ignoreMissingGitWarning": true, 28 "git.ignoreLimitWarning": true, 29 "python.analysis.extraPaths": [ 30 "/home/myuser/.conda/envs/py3.9/lib/python3.9/site-packages/" 31 ], 32 "editor.minimap.enabled": false, 33 "breadcrumbs.enabled": false, 34 "python.linting.enabled": true, 35 36 "python.linting.mypyEnabled": false, 37 "python.linting.banditEnabled": false, 38 "python.linting.flake8Enabled": false, 39 "python.linting.pylamaEnabled": false, 40 "python.linting.pylintEnabled": false, 41 "python.linting.prospectorEnabled": false, 42 "python.linting.pydocstyleEnabled": false, 43 "python.linting.pycodestyleEnabled": false, 44}
試したこと
settings.json全消し、VScodeのアンインストール、拡張機能の再インストール
VScode、拡張機能のバージョン
VScode:1.60.0
Discord Presence:v5.7.0
Jupyter:v2021.8.2041215044
Python:v2021.8.1159798656
Ruby:v0.28.1
Ruby Solargraph:v0.23.0
VSCode Ruby:v0.28.0
あなたの回答
tips
プレビュー