(command: string)
| 40 | } |
| 41 | |
| 42 | function looksLikePath(command: string): boolean { |
| 43 | return ( |
| 44 | command.startsWith("./") || |
| 45 | command.startsWith("../") || |
| 46 | command.includes("/") || |
| 47 | command.includes("\\") || |
| 48 | /^[A-Za-z]:/.test(command) |
| 49 | ); |
| 50 | } |
| 51 | |
| 52 | export interface EditorConfig { |
| 53 | editor: string; |
no test coverage detected