()
| 60 | } |
| 61 | |
| 62 | getDescription(): string { |
| 63 | const relativePath = makeRelative( |
| 64 | this.params.absolute_path, |
| 65 | this.config.getTargetDir(), |
| 66 | ); |
| 67 | return shortenPath(relativePath); |
| 68 | } |
| 69 | |
| 70 | override toolLocations(): ToolLocation[] { |
| 71 | return [{ path: this.params.absolute_path, line: this.params.offset }]; |
nothing calls this directly
no test coverage detected