Add unicorn lint rules - DOM built-in functions (#628)

- Prefer append(), remove(), replaceAll()
- Wrap nested ternaries in parenthesis
This commit is contained in:
filtered
2025-02-27 20:18:25 +11:00
committed by GitHub
parent 6f51767451
commit 1e8938ceff
11 changed files with 60 additions and 56 deletions

View File

@@ -231,9 +231,9 @@ export class LGraphNode implements Positionable, IPinnable, IColorable {
if (LiteGraph.node_box_coloured_when_on) {
colState = this.action_triggered
? "#FFF"
: this.execute_triggered
: (this.execute_triggered
? "#AAA"
: colState
: colState)
}
return this.boxcolor || colState || LiteGraph.NODE_DEFAULT_BOXCOLOR