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
Analyzers will produce a number of warnings, but only when a code-fixes request (from the suggestions API) is made do we actually need a list of fixes.
In the interest of performance, we should try to change the fixes from Fix list to Lazy<Fix list>.
Analyzers will produce a number of warnings, but only when a code-fixes request (from the suggestions API) is made do we actually need a list of fixes.
In the interest of performance, we should try to change the fixes from
Fix list
toLazy<Fix list>
.This is already how suggestions in FSharpLint are implemented.
https://github.com/fsprojects/FSharpLint/blob/f58665fc8c48461ad3d486bf608e4233012a94c0/src/FSharpLint.Core/Framework/Suggestion.fs#L28
The text was updated successfully, but these errors were encountered: