From 32ce397b690662c035f380b7c638e7d6491da8cd Mon Sep 17 00:00:00 2001 From: Egor Aristov Date: Fri, 24 Oct 2025 12:18:07 +0300 Subject: [PATCH] kod... --- CLAUDE.md | 8 -------- lib/ts/lib.ts | 7 +------ 2 files changed, 1 insertion(+), 14 deletions(-) delete mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md deleted file mode 100644 index c98294c..0000000 --- a/CLAUDE.md +++ /dev/null @@ -1,8 +0,0 @@ -For all prompts: -- if you need to understand what project does, feel free to walk over files and analyze them - -Common recommendations: -- dont write unnesesary comments if code is obvious - -Recommendations on golang code style: -- avoid iota diff --git a/lib/ts/lib.ts b/lib/ts/lib.ts index eea15ab..8163684 100644 --- a/lib/ts/lib.ts +++ b/lib/ts/lib.ts @@ -169,12 +169,7 @@ abstract class IPCCommon { } }; try { - this.sendMsg({ - type: MsgType.Call, - id, - method, - params, - }); + this.sendMsg({type: MsgType.Call, id, method, params}); } catch (e) { delete this.pendingCalls[id]; reject(new Error(`send call: ${e}`));