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-console": "off",
"semi": 1,
"camelcase": "warn"
"camelcase": "warn",
"sort-imports": "off"
},
"env": {
"browser": true

View File

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

View File

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