diff --git a/eslint.config.mjs b/eslint.config.mjs index a52f16e..6b9adf8 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -32,7 +32,7 @@ export default tseslint.config( 'error', 'single', { - allowTemplateLiterals: true + allowTemplateLiterals: 'avoidEscape' } ], '@stylistic/indent': [ diff --git a/src/struct.ts b/src/struct.ts index b9c9ecf..c0bbb65 100644 --- a/src/struct.ts +++ b/src/struct.ts @@ -242,7 +242,7 @@ export class Struct { // Disable Construction Of Complex Structures out += preventConstruction(this.name); } - out += `};\n`; + out += '};\n'; // Sanity Check Offsets for (const property of this.#properties) { diff --git a/src/vtable.ts b/src/vtable.ts index 2f1b9e9..ccf659e 100644 --- a/src/vtable.ts +++ b/src/vtable.ts @@ -160,7 +160,7 @@ export class VTable { // Base out += `${INDENT}static ${this.#getName()} *base;\n`; } - out += `};\n`; + out += '};\n'; // Sanity Check Size if (this.#size !== null) {