eslint config

This commit is contained in:
2025-11-18 11:10:37 +01:00
parent fa9e544fdf
commit 6f7dba42ca
6 changed files with 1433 additions and 3 deletions
+4 -1
View File
@@ -1,2 +1,5 @@
const hello = (name: string) => MessageLog.trace(`Hello, ${name}!`);
const hello = (name: string) => {
MessageLog.trace(`Hello, ${name}!`);
};
hello("Alice");