We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0329e75 commit 10ef252Copy full SHA for 10ef252
.eslintrc.json
@@ -1,3 +1,4 @@
1
{
2
- "extends": "athom"
3
-}
+ "extends": "athom",
+ "strict": "off"
4
+}
app.ts
@@ -2,11 +2,14 @@ import sourceMapSupport from 'source-map-support'
sourceMapSupport.install()
import { App } from 'homey'
5
+const { Log } = require('homey-log')
6
7
class UponorApp extends App {
- async onInit() {
8
- this.log('UponorApp is running...')
9
- }
+ async onInit() {
+ // @ts-ignore TS2339
10
+ this.homeyLog = new Log({ homey: this.homey })
11
+ this.log('UponorApp is running...')
12
+ }
13
}
14
15
module.exports = UponorApp
0 commit comments