Created
July 11, 2024 18:32
-
-
Save yuvve/98995f01729ea293bf68a102e3352a75 to your computer and use it in GitHub Desktop.
VSCode settings for correct autocomplete and linting when working with subfolders in Python
This file contains 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.autoComplete.extraPaths": ["./app"], | |
"pylint.args": [ | |
"--rcfile=${workspaceFolder}/app/" | |
], | |
"python.analysis.extraPaths": [ | |
"./app" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment