From 01a64f321d5f98a59d1432f659b8a9e11d3d60c6 Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Mon, 24 Feb 2025 07:06:06 -0500 Subject: [PATCH] One Last Linting Change --- eslint.config.mjs | 2 +- src/struct.ts | 2 +- src/vtable.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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) {