Skip to content

Commit 4174dee

Browse files
committed
fix: #43086 remove shortcut e for option exclude of Yaml/LintCommand - solve conflict with --env -e
1 parent 9cb8298 commit 4174dee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Command/LintCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ protected function configure()
5858
->setDescription(self::$defaultDescription)
5959
->addArgument('filename', InputArgument::IS_ARRAY, 'A file, a directory or "-" for reading from STDIN')
6060
->addOption('format', null, InputOption::VALUE_REQUIRED, 'The output format')
61-
->addOption('exclude', 'e', InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'Path(s) to exclude')
61+
->addOption('exclude', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'Path(s) to exclude')
6262
->addOption('parse-tags', null, InputOption::VALUE_NEGATABLE, 'Parse custom tags', null)
6363
->setHelp(<<<EOF
6464
The <info>%command.name%</info> command lints a YAML file and outputs to STDOUT

0 commit comments

Comments
 (0)