Skip to content

Latest commit

 

History

History
97 lines (79 loc) · 2.74 KB

comparison-results-added.md

File metadata and controls

97 lines (79 loc) · 2.74 KB

Added:

Rule: no-empty-function

  • Message: Unexpected empty arrow function 'onClick'.
  • Path: oldboyxx/jira_clone/client/src/shared/components/Button/index.jsx
  • Link
  26 |   disabled: false,
  27 |   isWorking: false,
> 28 |   onClick: () => {},
     |                  ^^
  29 | };
  30 |
  31 | const Button = forwardRef(

Rule: no-empty-function

  • Message: Unexpected empty arrow function 'onChange'.
  • Path: oldboyxx/jira_clone/client/src/shared/components/Input/index.jsx
  • Link
  19 |   invalid: false,
  20 |   filter: undefined,
> 21 |   onChange: () => {},
     |                   ^^
  22 | };
  23 |
  24 | const Input = forwardRef(({ icon, className, filter, onChange, ...inputProps }, ref) => {

Rule: no-empty-function

  • Message: Unexpected empty arrow function 'onClose'.
  • Path: oldboyxx/jira_clone/client/src/shared/components/Modal/index.jsx
  • Link
  27 |   withCloseIcon: true,
  28 |   isOpen: undefined,
> 29 |   onClose: () => {},
     |                  ^^
  30 |   renderLink: () => {},
  31 | };
  32 |

Rule: no-empty-function

  • Message: Unexpected empty arrow function 'renderLink'.
  • Path: oldboyxx/jira_clone/client/src/shared/components/Modal/index.jsx
  • Link
  28 |   isOpen: undefined,
  29 |   onClose: () => {},
> 30 |   renderLink: () => {},
     |                     ^^
  31 | };
  32 |
  33 | const Modal = ({

Rule: no-empty-function

  • Message: Unexpected empty arrow function 'onChange'.
  • Path: oldboyxx/jira_clone/client/src/shared/components/TextEditor/index.jsx
  • Link
  20 |   defaultValue: undefined,
  21 |   value: undefined,
> 22 |   onChange: () => {},
     |                   ^^
  23 |   getEditor: () => {},
  24 | };
  25 |

Rule: no-empty-function

  • Message: Unexpected empty arrow function 'getEditor'.
  • Path: oldboyxx/jira_clone/client/src/shared/components/TextEditor/index.jsx
  • Link
  21 |   value: undefined,
  22 |   onChange: () => {},
> 23 |   getEditor: () => {},
     |                    ^^
  24 | };
  25 |
  26 | const TextEditor = ({