Skip to content

Commit

Permalink
tab checking is done by neon parser only
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Sep 27, 2023
1 parent 9b547f1 commit 063501e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@


XX, [
'-d' => [Parser::Realpath => true, Parser::Repeatable => true, Parser::Default => getcwd()],
'-d' => [Parser::RealPath => true, Parser::Repeatable => true, Parser::Default => getcwd()],
'--ignore' => [Parser::Repeatable => true],
'--short-arrays' => [], // ignored
]);
Expand Down Expand Up @@ -105,7 +105,7 @@
$checker->addTask([$tasks, 'jsonSyntaxChecker'], '*.json');
$checker->addTask([$tasks, 'yamlIndentationChecker'], '*.yml');
$checker->addTask([$tasks, 'trailingWhiteSpaceFixer']);
$checker->addTask([$tasks, 'tabIndentationChecker'], '*.css,*.less,*.js,*.json,*.neon');
$checker->addTask([$tasks, 'tabIndentationChecker'], '*.css,*.less,*.js,*.json');
$checker->addTask([$tasks, 'tabIndentationPhpChecker'], '*.php,*.phpt');
$checker->addTask([$tasks, 'unexpectedTabsChecker'], '*.yml');
$checker->addTask([$tasks, 'docSyntaxtHinter'], '*.php,*.phpt');
Expand Down

0 comments on commit 063501e

Please sign in to comment.