forked from Azure/azure-sdk-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Swift filter button and create review help text for swift reviews (Az…
…ure#1863) * Swift filter button and create review help text for swift reviews
- Loading branch information
1 parent
8354895
commit 54a503d
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
src/dotnet/APIView/APIViewWeb/Languages/SwiftLanguageService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using Microsoft.Extensions.Configuration; | ||
|
||
namespace APIViewWeb | ||
{ | ||
public class SwiftLanguageService : JsonLanguageService | ||
{ | ||
public override string Name { get; } = "Swift"; | ||
|
||
//Swift doesn't have any parser for now | ||
//It will upload a json file with name Swift so Swift reviews are listed under that filter type | ||
public SwiftLanguageService(IConfiguration configuration) | ||
{ | ||
|
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters