Skip to content

Commit 248045a

Browse files
committed
wiip
1 parent df0c5ce commit 248045a

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

qodana.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,11 @@ include:
7777
#include:
7878
# - name: <SomeEnabledInspectionId>
7979
#Disable inspections
80-
#exclude:
81-
# - name: <SomeDisabledInspectionId>
82-
# paths:
83-
# - <path/where/not/run/inspection>
80+
exclude:
81+
- name: ConvertIfStatementToConditionalTernaryExpression
82+
paths:
83+
- GitVersion.Core.Tests/IntegrationTests/AlignGitFlowWithMainlineVersionStrategy.cs
84+
- GitVersion.Core.Tests/IntegrationTests/AlignGitHubFlowWithMainlineVersionStrategy.cs
8485
#Execute shell command before Qodana execution (Applied in CI/CD pipeline)
8586
bootstrap: dotnet build src/GitVersion.slnx
8687
dotnet:

src/GitVersion.Core.Tests/IntegrationTests/AlignGitFlowWithMainlineVersionStrategy.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using GitVersion.Configuration;
22
using GitVersion.VersionCalculation;
3+
// ReSharper disable ConvertIfStatementToConditionalTernaryExpression
34

45
namespace GitVersion.Core.Tests.IntegrationTests;
56

src/GitVersion.Core.Tests/IntegrationTests/AlignGitHubFlowWithMainlineVersionStrategy.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using GitVersion.Configuration;
22
using GitVersion.VersionCalculation;
3+
// ReSharper disable ConvertIfStatementToConditionalTernaryExpression
34

45
namespace GitVersion.Core.Tests.IntegrationTests;
56

0 commit comments

Comments
 (0)