fix: lint errors
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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) {
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user