Skip to content

Commit

Permalink
fix: lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
arielsvg committed Jan 12, 2021
1 parent e1f590f commit 4d3bb22
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Expand Up @@ -9,7 +9,8 @@
"no-throw-literal": 0,
"no-console": "off",
"semi": 1,
"camelcase": "warn"
"camelcase": "warn",
"sort-imports": "off"
},
"env": {
"browser": true
Expand Down
2 changes: 1 addition & 1 deletion app/assets/javascripts/services/desktopManager.ts
Expand Up @@ -157,7 +157,7 @@ export class DesktopManager extends ApplicationService {
undefined
);
}
})
});

this.$timeout(() => {
for (const observer of this.updateObservers) {
Expand Down
Expand Up @@ -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>
Expand Down

0 comments on commit 4d3bb22

Please sign in to comment.