Make eslint happy.
This commit is contained in:
parent
06332f16bd
commit
01519b1878
|
@ -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
|
||||
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue