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}`));