(file: string, errno: string)
| 813 | } |
| 814 | |
| 815 | function rememberBlockedConfigWrite(file: string, errno: string): void { |
| 816 | if (isBlockedConfigWriteErrno(errno)) { |
| 817 | blockedConfigWrites.set(file, errno) |
| 818 | } |
| 819 | } |
| 820 | |
| 821 | export function isProjectConfigKey(key: string): key is ProjectConfigKey { |
| 822 | return PROJECT_CONFIG_KEYS.includes(key as ProjectConfigKey) |
no test coverage detected