-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add onDone
or onClose
or something, just to allow to do some clean up after the analyzer done processing
#247
Comments
What sort of thing do you want to cleanup? That's doable. Although it'd likely instead be a |
We had to have a global This lint has been working fine till now but when we remove any method that added to this So we need to call |
Oh, you mean you want a per execution disposal? That's tricky. I'm not sure whether that's something I'd want to add. Why do you have a global |
@rrousselGit Because each That's why we add this global static |
Checking the entire project at once is not something supported. If you need this for the sake of checking the entire project at once, then it is not a reasonable use-case. We'd first need to officially support project-wide analysis before trying to support special cases for it. |
But it would be nice to have this feature, even for File-Level regardless our workaround to handle this case. What do you think? |
@rrousselGit |
Well I don't really have a plan to include this is in the package at the moment. |
Okay, thanks for your response 😊 |
Description:
Like we have the
createPlugin
entryPoint we need another function that allow us to do some clean up after the analyzer finish his jobThe text was updated successfully, but these errors were encountered: