Only specify nim and TS naming convention

Reducing the scope, we can review Rust, Golang and C in a separate PR.
This commit is contained in:
fryorcraken 2025-06-30 14:26:25 +10:00
parent 25984c0b14
commit 73354fd683
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4

View File

@ -83,28 +83,16 @@ How the API definition should be translated to specific languages.
```yaml
language_mappings:
rust:
naming_convention:
- functions: "snake_case"
- variables: "snake_case"
- types: "PascalCase"
golang:
naming_convention:
- functions: "snake_case"
- variables: "snake_case"
- types: "PascalCase"
c:
naming_convention: "snake_case"
prefix: "waku_"
typescript:
naming_convention:
- functions: "camelCase"
- variables: "camelCase"
- types: "PascalCase"
module_type: "esm"
nim:
naming_convention:
- functions: "camelCase"
- variables: "camelCase"
- types: "PascalCase"
```