subgraphs
subgraphs copied to clipboard
fix(); aave forks; fix linting issues
@steegecs Interesting thing to note here: In a handler you NEED to include the event and proper type even if you do not use the event.
Is there any way to skip this in the linter?
@dmelotik You can explicitly tell the linter to ignore a line (or a file). Add this comment on the line right above:
// eslint-disable-next-line @typescript-eslint/no-unused-vars
(or just eslint-disable-next-line
). This is one scenario when it can be justified to ignore the linter :D
yay breaking shit, thanks @jaimehgb