chore(lint) tame the (uppdated) linter

This commit is contained in:
Saúl Ibarra Corretgé
2021-11-04 22:10:43 +01:00
committed by Saúl Ibarra Corretgé
parent 0aba61d5c6
commit 162a67fe8b
385 changed files with 933 additions and 900 deletions

View File

@@ -21,7 +21,7 @@ type Props = BaseProps & {
}
/**
* Abstract dialog to submit something. E.g. a confirmation or a form.
* Abstract dialog to submit something. E.g. A confirmation or a form.
*/
class BaseSubmitDialog<P: Props, S: *> extends BaseDialog<P, S> {
/**
@@ -84,16 +84,16 @@ class BaseSubmitDialog<P: Props, S: *> extends BaseDialog<P, S> {
_onSubmit: () => boolean;
_renderHTML: string => Object | string
_renderHTML: string => Object | string;
/**
/** .
* Renders the actual content of the dialog defining what is about to be
* submitted. E.g. a simple confirmation (text, properly wrapped) or a
* submitted. E.g. A simple confirmation (text, properly wrapped) or a
* complex form.
*
* @returns {Object}
*/
_renderSubmittable: () => Object
_renderSubmittable: () => Object;
}
export default BaseSubmitDialog;