fix linting errors
This commit is contained in:
		@@ -1,6 +1,6 @@
 | 
			
		||||
namespace project_name.Tests;
 | 
			
		||||
 | 
			
		||||
using  project_name;
 | 
			
		||||
using project_name;
 | 
			
		||||
 | 
			
		||||
public class UnitTest1
 | 
			
		||||
{
 | 
			
		||||
 
 | 
			
		||||
@@ -2,9 +2,9 @@
 | 
			
		||||
 | 
			
		||||
public class HelloWorldProvider
 | 
			
		||||
{
 | 
			
		||||
    public string GetHelloWorld(string name = null)
 | 
			
		||||
    public string GetHelloWorld(string? name = null)
 | 
			
		||||
    {
 | 
			
		||||
        if(string.IsNullOrEmpty(name))
 | 
			
		||||
        if (string.IsNullOrEmpty(name))
 | 
			
		||||
        {
 | 
			
		||||
            return "Hello world!";
 | 
			
		||||
        }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user