kazimanzurrashid / aws-scheduler-go

Some analyzers or transformers are misconfigured in .deepsource.toml. Please refer to the docs.

  • ['github.com/kazimanzurrashid/aws-scheduler-go/graphql', 'github.com/kazimanzurrashid/aws-scheduler-go/collector', 'github.com/kazimanzurrashid/aws-scheduler-go/worker'] is not of type 'string' in meta for analyzer "go"

Avoid .bind() or local functions in JSX properties JS-0417
Performance
Major
5 months ago3 years old
JSX props should not use arrow functions
353                <TableRow
354                  key={item.id}
355                  hover
356                  onClick={() => handleRowClick(item)}357                >
358                  <TableCell>{item.id}</TableCell>
359                  <TableCell>
JSX props should not use arrow functions
281                    type="button"
282                    color="default"
283                    size="small"
284                    onClick={handleClear}285                    fullWidth
286                  >
287                    Clear
JSX props should not use arrow functions
294                    <Button
295                      color="primary"
296                      autoFocus
297                      onClick={() => setShowConfirmation(false)}298                    >
299                      No
300                    </Button>
JSX props should not use arrow functions
288                    </DialogContentText>
289                  </DialogContent>
290                  <DialogActions>
291                    <Button color="secondary" onClick={handleCancel}>292                      Yes
293                    </Button>
294                    <Button
JSX props should not use arrow functions
279                </Button>
280                <Dialog
281                  open={showConfirmation}
282                  onClose={() => setShowConfirmation(false)}283                >
284                  <DialogTitle>Confirm?</DialogTitle>
285                  <DialogContent>