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
Using <PackageReference Include="StyleCop.Analyzers" Version="1.1.118">, with a .Net Core 3.1 project with nullables enabled (<Nullable>enable</Nullable>).
The following code:
byte[]? byteData = null;
generates the following:
Error SA1011 Closing square bracket should be followed by a space.
I think this is a false positive.
The text was updated successfully, but these errors were encountered:
Using
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
, with a .Net Core 3.1 project with nullables enabled (<Nullable>enable</Nullable>
).The following code:
generates the following:
I think this is a false positive.
The text was updated successfully, but these errors were encountered: