lint update
This commit is contained in:
@ -114,7 +114,7 @@ class ProsodyConfigVirtualHost extends ProsodyConfigBlock {
|
||||
this.name = name
|
||||
}
|
||||
|
||||
write (): string {
|
||||
override write (): string {
|
||||
return `VirtualHost "${this.name}"\n` + super.write()
|
||||
}
|
||||
}
|
||||
@ -129,7 +129,7 @@ class ProsodyConfigComponent extends ProsodyConfigBlock {
|
||||
this.name = name
|
||||
}
|
||||
|
||||
write (): string {
|
||||
override write (): string {
|
||||
if (this.type !== undefined) {
|
||||
return `Component "${this.name}" "${this.type}"\n` + super.write()
|
||||
}
|
||||
|
@ -8,9 +8,9 @@
|
||||
"noImplicitAny": true, // should already be true because of strict:true
|
||||
"noImplicitThis": true, // should already be true because of strict:true
|
||||
"noImplicitReturns": true,
|
||||
"noImplicitOverride": true,
|
||||
"strictBindCallApply": true, // should already be true because of strict:true
|
||||
"noUnusedLocals": true,
|
||||
|
||||
"noUnusedLocals": false, // works better as a linter error/warning
|
||||
"removeComments": true,
|
||||
"sourceMap": true,
|
||||
|
||||
|
Reference in New Issue
Block a user