From 73354fd6838417f0608f99035b6d3d79135258da Mon Sep 17 00:00:00 2001 From: fryorcraken Date: Mon, 30 Jun 2025 14:26:25 +1000 Subject: [PATCH] Only specify nim and TS naming convention Reducing the scope, we can review Rust, Golang and C in a separate PR. --- standards/application/waku-api.md | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/standards/application/waku-api.md b/standards/application/waku-api.md index f9f3183..862cd01 100644 --- a/standards/application/waku-api.md +++ b/standards/application/waku-api.md @@ -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" ```