Hello. The `context.filename` is undefined for inline lint in Cursor IDE. I suppose it's related to the inline file lint in general. My suggested fix is to replace ```ts const filename = context.filename; ``` with ```ts const fullFilePath = context.getFilename(); const cwd = context.getCwd(); const filename = path.relative(cwd, fullFilePath); ``` which works perfectly in my case.