This commit is contained in:
parent
16089ef4b2
commit
01a64f321d
@ -32,7 +32,7 @@ export default tseslint.config(
|
||||
'error',
|
||||
'single',
|
||||
{
|
||||
allowTemplateLiterals: true
|
||||
allowTemplateLiterals: 'avoidEscape'
|
||||
}
|
||||
],
|
||||
'@stylistic/indent': [
|
||||
|
@ -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) {
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user