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