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

@ -120,7 +120,7 @@ const checkFiltered = (index: string, filters: ImmutableList<FilterEntity>) =>
return result;
}, ImmutableList<string>())), ImmutableList<string>());
type APIStatus = { id: string, username?: string };
type APIStatus = { id: string; username?: string };
export const makeGetStatus = () => {
return createSelector(
@ -202,7 +202,7 @@ export const getGroupGallery = createSelector([
}, ImmutableList());
});
type APIChat = { id: string, last_message: string };
type APIChat = { id: string; last_message: string };
export const makeGetChat = () => {
return createSelector(
@ -335,7 +335,7 @@ export const makeGetRemoteInstance = () => {
});
};
type ColumnQuery = { type: string, prefix?: string };
type ColumnQuery = { type: string; prefix?: string };
export const makeGetStatusIds = () => createSelector([
(state: RootState, { type, prefix }: ColumnQuery) => getSettings(state).get(prefix || type, ImmutableMap()),