()
| 85145 | return exists; |
| 85146 | }; |
| 85147 | var writeCommitlintLLMConfig = async (commitlintLLMConfig) => { |
| 85148 | await import_promises2.default.writeFile( |
| 85149 | COMMITLINT_LLM_CONFIG_PATH, |
| 85150 | JSON.stringify(commitlintLLMConfig, null, 2) |
| 85151 | ); |
| 85152 | }; |
| 85153 | var getCommitlintLLMConfig = async () => { |
| 85154 | const content = await import_promises2.default.readFile(COMMITLINT_LLM_CONFIG_PATH); |
| 85155 | const commitLintLLMConfig = JSON.parse( |
| 85156 | content.toString() |
no test coverage detected
searching dependent graphs…