* Generates a doc page with formatter result examples * @returns {void}
()
| 158 | * @returns {void} |
| 159 | */ |
| 160 | function generateFormatterExamples() { |
| 161 | // We don't need the stack trace of execFileSync if the command fails. |
| 162 | try { |
| 163 | childProcess.execFileSync( |
| 164 | process.execPath, |
| 165 | ["tools/generate-formatter-examples.js"], |
| 166 | { stdio: "inherit" }, |
| 167 | ); |
| 168 | } catch { |
| 169 | exit(1); |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * Generate a doc page that lists all of the rules and links to them |
no outgoing calls
no test coverage detected
searching dependent graphs…