()
| 49 | |
| 50 | export const getCommitlintLLMConfig = |
| 51 | async (): Promise<CommitlintLLMConfig> => { |
| 52 | const content = await fs.readFile(COMMITLINT_LLM_CONFIG_PATH); |
| 53 | const commitLintLLMConfig = JSON.parse( |
| 54 | content.toString() |
| 55 | ) as CommitlintLLMConfig; |
| 56 | return commitLintLLMConfig; |
| 57 | }; |
no test coverage detected