Enable @typescript-eslint/explicit-function-return-type in /src (#9788)

* Enable `@typescript-eslint/explicit-member-accessibility` on /src

* Prettier

* Enable `@typescript-eslint/explicit-function-return-type` in /src

* Fix types

* tsc strict fixes

* Delint

* Fix test

* Fix bad merge
This commit is contained in:
Michael Telatynski 2023-01-12 13:25:14 +00:00 committed by GitHub
parent 7a36ba0fde
commit 030b7e90bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
683 changed files with 3459 additions and 3013 deletions

View file

@ -19,7 +19,7 @@ import { Room } from "matrix-js-sdk/src/models/room";
import { IEventRelation } from "matrix-js-sdk/src/models/event";
import MatrixClientContext from "../../../contexts/MatrixClientContext";
import ContextMenu, { AboveLeftOf } from "../../structures/ContextMenu";
import ContextMenu, { MenuProps } from "../../structures/ContextMenu";
import LocationPicker, { ILocationPickerProps } from "./LocationPicker";
import { shareLiveLocation, shareLocation, LocationShareType } from "./shareLocation";
import SettingsStore from "../../../settings/SettingsStore";
@ -32,7 +32,7 @@ import { SettingLevel } from "../../../settings/SettingLevel";
type Props = Omit<ILocationPickerProps, "onChoose" | "shareType"> & {
onFinished: (ev?: SyntheticEvent) => void;
menuPosition: AboveLeftOf;
menuPosition: MenuProps;
openMenu: () => void;
roomId: Room["roomId"];
relation?: IEventRelation;
@ -70,7 +70,7 @@ const LocationShareMenu: React.FC<Props> = ({ menuPosition, onFinished, sender,
? shareLiveLocation(matrixClient, roomId, displayName, openMenu)
: shareLocation(matrixClient, roomId, shareType, relation, openMenu);
const onLiveShareEnableSubmit = () => {
const onLiveShareEnableSubmit = (): void => {
SettingsStore.setValue("feature_location_share_live", undefined, SettingLevel.DEVICE, true);
};