From 78d4fc42a5e85d676e73a3090dd4b0a952b51f6c Mon Sep 17 00:00:00 2001 From: ghalestrilo Date: Fri, 31 Jul 2020 10:40:37 -0300 Subject: [PATCH] :ok_hand: remove eslint disable lines --- client/modules/IDE/components/NewFileForm.jsx | 2 +- client/modules/IDE/components/NewFolderForm.jsx | 2 +- client/modules/User/components/ResetPasswordForm.jsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/modules/IDE/components/NewFileForm.jsx b/client/modules/IDE/components/NewFileForm.jsx index 5bebc451..9c0234f7 100644 --- a/client/modules/IDE/components/NewFileForm.jsx +++ b/client/modules/IDE/components/NewFileForm.jsx @@ -48,7 +48,7 @@ class NewFileForm extends React.Component { NewFileForm.propTypes = { fields: PropTypes.shape({ - name: PropTypes.object.isRequired // eslint-disable-line + name: PropTypes.object.isRequired }).isRequired, handleSubmit: PropTypes.func.isRequired, createFile: PropTypes.func.isRequired, diff --git a/client/modules/IDE/components/NewFolderForm.jsx b/client/modules/IDE/components/NewFolderForm.jsx index 6ab54b61..c5e0b564 100644 --- a/client/modules/IDE/components/NewFolderForm.jsx +++ b/client/modules/IDE/components/NewFolderForm.jsx @@ -49,7 +49,7 @@ class NewFolderForm extends React.Component { NewFolderForm.propTypes = { fields: PropTypes.shape({ - name: PropTypes.object.isRequired // eslint-disable-line + name: PropTypes.object.isRequired }).isRequired, handleSubmit: PropTypes.func.isRequired, createFolder: PropTypes.func.isRequired, diff --git a/client/modules/User/components/ResetPasswordForm.jsx b/client/modules/User/components/ResetPasswordForm.jsx index 4c799dad..df96bd79 100644 --- a/client/modules/User/components/ResetPasswordForm.jsx +++ b/client/modules/User/components/ResetPasswordForm.jsx @@ -32,7 +32,7 @@ function ResetPasswordForm(props) { ResetPasswordForm.propTypes = { fields: PropTypes.shape({ - email: PropTypes.object.isRequired // eslint-disable-line + email: PropTypes.object.isRequired }).isRequired, handleSubmit: PropTypes.func.isRequired, initiateResetPassword: PropTypes.func.isRequired,