Skip to content

Instantly share code, notes, and snippets.

@yuvve
Created July 11, 2024 18:32
Show Gist options
  • Save yuvve/98995f01729ea293bf68a102e3352a75 to your computer and use it in GitHub Desktop.
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
{
"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