Skip to content

Commit 940e03e

Browse files
committed
fix(helm/generate-docs): lint generated files
Signed-off-by: Emilien Escalle <[email protected]>
1 parent 7154402 commit 940e03e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

actions/helm/generate-docs/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ runs:
8080
// Generate markdownlint config file if not exists
8181
const fs = require('node:fs');
8282
const path = require('node:path');
83-
let markdownlintConfigPath = path.join(workingDirectory, ".markdownlint.json");
83+
let markdownlintConfigPath = path.join(workingDirectory, ".markdownlint-cli2.jsonc");
8484
if (!fs.existsSync(markdownlintConfigPath)) {
85-
markdownlintConfigPath = path.join(process.env.RUNNER_TEMP, `markdownlint-config-${Date.now()}.json`);
85+
markdownlintConfigPath = path.join(process.env.RUNNER_TEMP, `${Date.now()}.markdownlint-cli2.jsonc`);
8686
const defaultConfig = {
8787
"default": true,
8888
"line-length": { "max": 300 }

0 commit comments

Comments
 (0)