My code in ESLint is throwing an error about a missing JSDoc return declaration, even though I have included an @inheritdoc
tag there:
https://i.sstatic.net/QGxQh.png
Here is the section from the interface I am inheriting from:
export interface L2BlockSource {
/**
* Gets the sync status of the L2 block source.
* @returns The sync status of the L2 block source.
*/
getSyncStatus(): SyncStatus;
}
Does anyone know what might be causing this issue? Thank you.