This commit is contained in:
Dragon Fire
2020-10-24 14:25:32 -04:00
parent 40080cadef
commit ebd26a7b0e
25 changed files with 42 additions and 44 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ module.exports = class LintRuleCommand extends Command {
key: 'rule',
prompt: 'Which rule would you like to get information on?',
type: 'string',
parse: rule => rule.toLowerCase().replace(/ /g, '-')
parse: rule => rule.toLowerCase().replaceAll(' ', '-')
}
]
});