fix: lint errors

This commit is contained in:
Baptiste Grob
2021-01-12 11:44:01 +01:00
parent e1f590f2f0
commit 4d3bb22a8b
3 changed files with 6 additions and 5 deletions

View File

@@ -9,7 +9,8 @@
"no-throw-literal": 0, "no-throw-literal": 0,
"no-console": "off", "no-console": "off",
"semi": 1, "semi": 1,
"camelcase": "warn" "camelcase": "warn",
"sort-imports": "off"
}, },
"env": { "env": {
"browser": true "browser": true

View File

@@ -157,7 +157,7 @@ export class DesktopManager extends ApplicationService {
undefined undefined
); );
} }
}) });
this.$timeout(() => { this.$timeout(() => {
for (const observer of this.updateObservers) { for (const observer of this.updateObservers) {

View File

@@ -15,9 +15,9 @@ import {
} from '@/strings'; } from '@/strings';
type InputValue = { type InputValue = {
prompt: ChallengePrompt prompt: ChallengePrompt;
value: string value: string;
invalid: boolean invalid: boolean;
} }
type Values = Record<number, InputValue> type Values = Record<number, InputValue>