Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ This is not used by Autorest itself.
``` yaml $(swagger-to-sdk)
swagger-to-sdk:
- repo: azure-sdk-for-go
- repo: azure-sdk-for-js
- repo: azure-sdk-for-node
```

## CSharp Settings
Expand All @@ -43,6 +45,14 @@ csharp:

See configuration in [readme.go.md](./readme.go.md)

## JavaScript/TypeScript

See configuration in [readme.typescript.md](./readme.typescript.md)

## Node.js

See configuration in [readme.nodejs.md](./readme.nodejs.md)

## Suppressions
Suppressing errors due to API design:
``` yaml
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Node.js

These settings apply only when `--nodejs` is specified on the command line.
Please also specify `--node-sdks-folder=<path to root folder of your azure-sdk-for-node clone>`.

``` yaml $(nodejs)
nodejs:
package-name: azure-cognitiveservices-localsearch
output-folder: $(node-sdks-folder)/lib/services/cognitiveServicesLocalSearch
azure-arm: false
generate-license-txt: true
generate-package-json: true
generate-readme-md: true
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## TypeScript

These settings apply only when `--typescript` is specified on the command line.
Please also specify `--typescript-sdks-folder=<path to root folder of your azure-sdk-for-js clone>`.

``` yaml $(typescript)
typescript:
package-name: "@azure/cognitiveservices-localsearch"
output-folder: "$(typescript-sdks-folder)/packages/@azure/cognitiveservices-localsearch"
azure-arm: false
generate-metadata: true
```