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
// This is fine
var rangeIsFine = 0..(1 + 0);
// +-- Warning SA1008: Opening parenthesis should not be preceded by a space.
// |
// v
var rangeFalsePositive = (0 + 0)..1;
Activity
Update SA1008 to require a space before the opening parenthesis if it…
Update SA1008 to require a space before the opening parenthesis if it…