Skip to content

Commit 9c04383

Browse files
authored
Merge pull request #52 from fossa-app/format-code
Format Code
2 parents b0b2c0e + 5c89317 commit 9c04383

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Taskfile.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
# https://taskfile.dev
22

3-
version: '3'
3+
version: "3"
44

55
tasks:
66
default:
77
cmds:
88
- dotnet tool restore
9+
- dotnet format whitespace --verbosity diagnostic
10+
- dotnet format style --severity info --verbosity diagnostic
11+
- dotnet format analyzers --severity info --verbosity diagnostic
912
- dotnet cake --target=Build
1013
- dotnet cake --target=Test
1114
- dotnet cake --target=Pack

Tests/Licensing.Test/SystemEntitlementsConverterTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public void GivenCountryCode_WhenSystemEntitlementsConverted_Then(string country
5858
// Assert
5959

6060
_ = validation.IsSuccess.Should().Be(isValid);
61-
validation.IfSuccess(x =>
61+
_ = validation.IfSuccess(x =>
6262
{
6363
_ = x.CountryCodes.Count.Should().Be(1);
6464
_ = x.CountryCodes.Single().Should().Be(country.TwoLetterISORegionName);

0 commit comments

Comments
 (0)