(filePath: string)
| 220 | * resolver, so it's processed through the no-grammar (`yaml`-style) path. |
| 221 | */ |
| 222 | export function isPlayRoutesFile(filePath: string): boolean { |
| 223 | return ( |
| 224 | filePath === 'conf/routes' || |
| 225 | filePath.endsWith('/conf/routes') || |
| 226 | filePath.endsWith('.routes') |
| 227 | ); |
| 228 | } |
| 229 | |
| 230 | /** |
| 231 | * Caches for loaded grammars and parsers |
no outgoing calls
no test coverage detected