(startDir: string)
| 127 | }, |
| 128 | |
| 129 | findOptional(startDir: string): ConfigT { |
| 130 | const configPath = findConfigPath(startDir); |
| 131 | return configPath |
| 132 | ? this.loadFile(configPath, startDir) |
| 133 | : {...defaultConfig}; |
| 134 | }, |
| 135 | |
| 136 | loadFile(pathToConfig: string): ConfigT { |
| 137 | //$FlowFixMe: necessary dynamic require |
nothing calls this directly
no test coverage detected
searching dependent graphs…