chore: Implement prettier (#23153)

* chore: Implement prettier

* Run prettier

* fix lint

* process feedback

* process feedback
This commit is contained in:
Koen Kanters
2024-06-24 18:58:47 +00:00
committed by GitHub
parent 8780ab2792
commit 30227a13ae
65 changed files with 10687 additions and 5360 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
class Example {
constructor(zigbee, mqtt, state, publishEntityState, eventBus) {
this.mqtt = mqtt;
this.mqtt.publish('example/extension', 'call from constructor')
this.mqtt.publish('example/extension', 'call from constructor');
}
start() {
this.mqtt.publish('example/extension', 'test')
this.mqtt.publish('example/extension', 'test');
}
}