(command: string | null, token: string)
| 109 | } |
| 110 | |
| 111 | function isLegacyIgnoredSnapshotShortFlag(command: string | null, token: string): boolean { |
| 112 | return token === '-c' && (command === 'snapshot' || command === 'diff'); |
| 113 | } |
| 114 | |
| 115 | function shouldPassThroughLocalToolFlag( |
| 116 | command: string | null, |