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

@ -101,7 +101,7 @@ export default class SoftLogout extends React.Component<IProps, IState> {
}
}
private onClearAll = () => {
private onClearAll = (): void => {
Modal.createDialog(ConfirmWipeDeviceDialog, {
onFinished: (wipeData) => {
if (!wipeData) return;
@ -112,7 +112,7 @@ export default class SoftLogout extends React.Component<IProps, IState> {
});
};
private async initLogin() {
private async initLogin(): Promise<void> {
const queryParams = this.props.realQueryParams;
const hasAllParams = queryParams && queryParams["loginToken"];
if (hasAllParams) {
@ -133,15 +133,15 @@ export default class SoftLogout extends React.Component<IProps, IState> {
this.setState({ flows, loginView: chosenView });
}
private onPasswordChange = (ev) => {
private onPasswordChange = (ev): void => {
this.setState({ password: ev.target.value });
};
private onForgotPassword = () => {
private onForgotPassword = (): void => {
dis.dispatch({ action: "start_password_recovery" });
};
private onPasswordLogin = async (ev) => {
private onPasswordLogin = async (ev): Promise<void> => {
ev.preventDefault();
ev.stopPropagation();
@ -181,7 +181,7 @@ export default class SoftLogout extends React.Component<IProps, IState> {
});
};
private async trySsoLogin() {
private async trySsoLogin(): Promise<void> {
this.setState({ busy: true });
const hsUrl = localStorage.getItem(SSO_HOMESERVER_URL_KEY);
@ -261,7 +261,7 @@ export default class SoftLogout extends React.Component<IProps, IState> {
);
}
private renderSignInSection() {
private renderSignInSection(): JSX.Element {
if (this.state.loginView === LoginView.Loading) {
return <Spinner />;
}
@ -325,7 +325,7 @@ export default class SoftLogout extends React.Component<IProps, IState> {
);
}
public render() {
public render(): JSX.Element {
return (
<AuthPage>
<AuthHeader />