We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24e1899 commit d327694Copy full SHA for d327694
1 file changed
src/kubeconfig.ts
@@ -34,7 +34,7 @@ export function exportToFile(kubeconfig: KubeConfig, configLocation: string): vo
34
fs.ensureFileSync(configLocation);
35
fs.writeFileSync(
36
configLocation,
37
- jsYaml.dump(configContents, { noArrayIndent: true, quotingType: '"', lineWidth: -1 }),
+ jsYaml.dump(configContents, { seqNoIndent: true, quoteStyle: 'double', lineWidth: -1 }),
38
'utf-8',
39
);
40
}
0 commit comments