1
0
Fork 0

Make eslint happy.

This commit is contained in:
Kitteh 2021-05-07 11:30:41 +01:00
parent 06332f16bd
commit 01519b1878
3 changed files with 4 additions and 3 deletions

View file

@ -8,13 +8,12 @@ plugins:
- sort-imports-es6-autofix
parserOptions:
ecmaVersion: 8
ecmaVersion: 9
sourceType: module
experimentalObjectRestSpread: true
globals:
pageState: writable
pageContent: writable
realPages: writable
module: writable

View file

@ -4,6 +4,7 @@ import { Page } from "../types/Page.js";
import { changePage, setErrorText, setPageContent } from "../pageUtils.js";
import { lookupSelf, usernameLogin } from "../api.js";
import { makeElement } from "../htmlUtils.js";
import { pageState } from "../globalPageState.js";
import i18next from 'i18next';
export class LoginPage extends Page {

View file

@ -1,6 +1,7 @@
import { Page } from "../types/Page.js";
import { changePage, setPageContent } from "../pageUtils.js";
import { makeElement } from "../htmlUtils.js";
import { pageState } from "../globalPageState.js";
export class SetVaultURLPage extends Page {
constructor() {