You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, is there a way in the linter to exclude not only functions but everything using a regular expression? For example, I want to exclude a number of checks with this expression: tіme\.[\w]+\s*\*\s*[\d]+
Hi, is there a way in the linter to exclude not only functions but everything using a regular expression? For example, I want to exclude a number of checks with this expression:
tіme\.[\w]+\s*\*\s*[\d]+
I want to exclude cases like:
Wait(time.Second * 5)
time.After(time.Second * 5)
time.Sleep(time.Second * 5)
t := time.Second * 10
and so on.
The text was updated successfully, but these errors were encountered: