eslint: use semicolon TypeScript delimeter

This commit is contained in:
Alex Gleason
2023-10-02 13:54:02 -05:00
parent 702124fb79
commit 645ce60a5f
479 changed files with 1928 additions and 1938 deletions

View File

@@ -9,7 +9,7 @@ const toSentence = (arr: string[]) => arr
.slice(0, -2);
type Errors = {
[key: string]: string[]
[key: string]: string[];
}
const buildErrorMessage = (errors: Errors) => {
@@ -22,7 +22,7 @@ const buildErrorMessage = (errors: Errors) => {
return toSentence(individualErrors);
};
const httpErrorMessages: { code: number, name: string, description: string }[] = [
const httpErrorMessages: { code: number; name: string; description: string }[] = [
{
code: 100,
name: 'Continue',