One Last Linting Change
All checks were successful
CI / Build (push) Successful in 14s

This commit is contained in:
TheBrokenRail 2025-02-24 07:06:06 -05:00
parent 16089ef4b2
commit 01a64f321d
3 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ export default tseslint.config(
'error', 'error',
'single', 'single',
{ {
allowTemplateLiterals: true allowTemplateLiterals: 'avoidEscape'
} }
], ],
'@stylistic/indent': [ '@stylistic/indent': [

View File

@ -242,7 +242,7 @@ export class Struct {
// Disable Construction Of Complex Structures // Disable Construction Of Complex Structures
out += preventConstruction(this.name); out += preventConstruction(this.name);
} }
out += `};\n`; out += '};\n';
// Sanity Check Offsets // Sanity Check Offsets
for (const property of this.#properties) { for (const property of this.#properties) {

View File

@ -160,7 +160,7 @@ export class VTable {
// Base // Base
out += `${INDENT}static ${this.#getName()} *base;\n`; out += `${INDENT}static ${this.#getName()} *base;\n`;
} }
out += `};\n`; out += '};\n';
// Sanity Check Size // Sanity Check Size
if (this.#size !== null) { if (this.#size !== null) {