How to ignore error for python #123
Answered
by
mkslanc
krishnagogada
asked this question in
Q&A
-
I am using the latest version. I want to ignore some errors in the Python language. |
Beta Was this translation helpful? Give feedback.
Answered by
mkslanc
May 27, 2024
Replies: 1 comment
-
hey @krishnagogada, for python you could use same options - export interface FilterDiagnosticsOptions {
errorCodesToIgnore?: string[],
errorCodesToTreatAsWarning?: string[]
errorCodesToTreatAsInfo?: string[],
errorMessagesToIgnore?: RegExp[],
errorMessagesToTreatAsWarning?: RegExp[]
errorMessagesToTreatAsInfo?: RegExp[]
} or pass ignore's param to configuration similar to this |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
krishnagogada
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hey @krishnagogada, for python you could use same options -
or pass ignore's param to configuration similar to this