Skip to content

Commit

Permalink
// GlobalSuppressions.cs && add more time for main pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
qdraw committed Apr 4, 2024
1 parent 537b1d1 commit 18d47ec
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pipelines/azure/develop-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ stages:
jobs:
- job: buildnetcore
displayName: 'Build'
timeoutInMinutes: 25 # how long to run the job before automatically cancelling
timeoutInMinutes: 30 # how long to run the job before automatically cancelling
cancelTimeoutInMinutes: 10 # how much time to give 'run always even if cancelled tasks' before stopping them
pool:
vmImage: 'ubuntu-22.04'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
using System.Diagnostics.CodeAnalysis;

// GlobalSuppressions.cs

// S1309: Do not suppress issues.
[assembly:
SuppressMessage("Sonar", "S1309",
Expand Down
12 changes: 12 additions & 0 deletions starsky/starsky/GlobalSuppressions.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System.Diagnostics.CodeAnalysis;

// GlobalSuppressions.cs

// S6931:Change the paths of the actions of this controller to be relative
// and add a controller route with the common prefix.
[assembly:
SuppressMessage("Sonar", "S6931",
Justification =
"Change the paths of the actions of this controller to be relative and " +
"add a controller route with the common prefix.",
Scope = "module")]

0 comments on commit 18d47ec

Please sign in to comment.