1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-19 22:18:03 +00:00

Configure ESlint properly

This commit is contained in:
2023-06-11 09:27:57 +02:00
parent 15d30e67c3
commit 6cc329982a
7 changed files with 1824 additions and 203 deletions

View File

@ -1,10 +1,10 @@
import { Hosts } from "$wails/go/app/App";
import { writable } from "svelte/store";
import applicationInited from "./inited";
import { Hosts } from '$wails/go/app/App';
import { writable } from 'svelte/store';
import applicationInited from './inited';
const { set, subscribe } = writable();
const update = async () => set(await Hosts());
const update = async() => set(await Hosts());
applicationInited.defer(update);
const hosts = { update, subscribe };

View File

@ -1,5 +1,5 @@
import { WindowSetTitle } from "$wails/runtime/runtime";
import { writable } from "svelte/store";
import { WindowSetTitle } from '$wails/runtime/runtime';
import { writable } from 'svelte/store';
const { set, subscribe } = writable('Rolens');