-1

I have a file, "GeneratedCode" that at times is .ts .py or .c

I want to programmatically disable linting in VsCode whenever I view it.

D.S.
  • 29
  • 6

1 Answers1

0

Example:

"python.linting.ignorePatterns": [
    ".vscode/*.py",
    "**{filename or pattern}**",
    "**/site-packages/**/*.py"
]