1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-20 18:58:57 +00:00

Fix eslint import extension (#682)

* Fix eslint import extension

* Update eslint hound

* Enable no unresolved for normal usage
This commit is contained in:
Paulus Schoutsen
2017-11-25 11:14:44 -08:00
committed by GitHub
parent 5f5a62d094
commit 28457747e7
40 changed files with 101 additions and 80 deletions

View File

@@ -1,5 +1,5 @@
import { h, render } from 'preact';
import Script from './script';
import Script from './script.js';
window.ScriptEditor = function (mountEl, props, mergeEl) {
return render(h(Script, props), mountEl, mergeEl);