Skip to content

Commit

Permalink
Disable camel case for CLI, fixes axe #4250 (#4251)
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore committed Sep 19, 2024
1 parent 94a19a3 commit 3ae5dca
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/cli/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,10 @@ function validateInput(argv) {
export async function parseCommandLine() {
let yargsInstance = yargs(hideBin(process.argv));
let parsed = yargsInstance
.parserConfiguration({ 'deep-merge-config': true })
.parserConfiguration({
'camel-case-expansion': false,
'deep-merge-config': true
})
.env('SITESPEED_IO')
.usage('$0 [options] <url>/<file>')

Expand Down

0 comments on commit 3ae5dca

Please sign in to comment.