Don't use implicit usings
This commit is contained in:
parent
02aab2e590
commit
bb954e99d5
@ -15,6 +15,7 @@ csharp_style_unused_value_expression_preference = unused_local_variable
|
||||
csharp_prefer_braces = true
|
||||
csharp_prefer_static_local_function = true
|
||||
dotnet_style_prefer_foreach_explicit_cast_in_source = always
|
||||
dotnet_style_prefer_collection_expression = when_types_loosely_match
|
||||
dotnet_diagnostic.IDE0001.severity = warning
|
||||
dotnet_diagnostic.IDE0002.severity = warning
|
||||
dotnet_diagnostic.IDE0004.severity = warning
|
||||
@ -47,11 +48,18 @@ dotnet_diagnostic.IDE0080.severity = warning
|
||||
dotnet_diagnostic.IDE0083.severity = warning
|
||||
dotnet_diagnostic.IDE0090.severity = warning
|
||||
dotnet_diagnostic.IDE0100.severity = warning
|
||||
dotnet_diagnostic.IDE0150.severity = warning
|
||||
dotnet_diagnostic.IDE0180.severity = warning
|
||||
dotnet_diagnostic.IDE0200.severity = warning
|
||||
dotnet_diagnostic.IDE0220.severity = warning
|
||||
dotnet_diagnostic.IDE0260.severity = warning
|
||||
dotnet_diagnostic.IDE0270.severity = warning
|
||||
dotnet_diagnostic.IDE0300.severity = warning
|
||||
dotnet_diagnostic.IDE0301.severity = warning
|
||||
dotnet_diagnostic.IDE0302.severity = warning
|
||||
dotnet_diagnostic.IDE0303.severity = warning
|
||||
dotnet_diagnostic.IDE0304.severity = warning
|
||||
dotnet_diagnostic.IDE0305.severity = warning
|
||||
dotnet_diagnostic.CA1508.severity = warning
|
||||
dotnet_diagnostic.CA1514.severity = warning
|
||||
dotnet_diagnostic.CA1515.severity = warning
|
||||
@ -60,7 +68,6 @@ dotnet_diagnostic.CA1802.severity = warning
|
||||
dotnet_diagnostic.CA1805.severity = warning
|
||||
dotnet_diagnostic.CA1806.severity = warning
|
||||
dotnet_diagnostic.CA1810.severity = warning
|
||||
dotnet_diagnostic.CA1812.severity = warning
|
||||
dotnet_diagnostic.CA1814.severity = warning
|
||||
dotnet_diagnostic.CA1820.severity = warning
|
||||
dotnet_diagnostic.CA1822.severity = warning
|
||||
|
@ -1,3 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace luaaaaah;
|
||||
|
||||
class Parser
|
||||
|
@ -1,4 +1,8 @@
|
||||
namespace luaaaaah;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
|
||||
namespace luaaaaah;
|
||||
|
||||
public class Program
|
||||
{
|
||||
|
@ -1,3 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace luaaaaah;
|
||||
class Tokenizer
|
||||
{
|
||||
|
@ -3,7 +3,7 @@
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<ImplicitUsings>disable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
</Project>
|
Loading…
x
Reference in New Issue
Block a user