File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/Microsoft.OpenApi.Hidi Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -27,19 +27,19 @@ static async Task<int> Main(string[] args)
27
27
28
28
var formatOption = new Option ( "--format" , "File format" , typeof ( OpenApiFormat ) ) ;
29
29
formatOption . AddAlias ( "-f" ) ;
30
- ;
30
+
31
31
var inlineOption = new Option ( "--inline" , "Inline $ref instances" , typeof ( bool ) ) ;
32
32
inlineOption . AddAlias ( "-i" ) ;
33
- ;
33
+
34
34
var resolveExternalOption = new Option ( "--resolve-external" , "Resolve external $refs" , typeof ( bool ) ) ;
35
35
resolveExternalOption . AddAlias ( "-ex" ) ;
36
- ;
36
+
37
37
var filterByOperationIdsOption = new Option ( "--filter-by-operationids" , "Filters OpenApiDocument by OperationId(s) provided" , typeof ( string ) ) ;
38
38
filterByOperationIdsOption . AddAlias ( "-op" ) ;
39
- ;
39
+
40
40
var filterByTagsOption = new Option ( "--filter-by-tags" , "Filters OpenApiDocument by Tag(s) provided" , typeof ( string ) ) ;
41
41
filterByTagsOption . AddAlias ( "-t" ) ;
42
- ;
42
+
43
43
var filterByCollectionOption = new Option ( "--filter-by-collection" , "Filters OpenApiDocument by Postman collection provided" , typeof ( string ) ) ;
44
44
filterByCollectionOption . AddAlias ( "-c" ) ;
45
45
You can’t perform that action at this time.
0 commit comments