Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
SmetDenis committed Nov 8, 2021
1 parent c733a20 commit 2f23550
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .phan.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

$default = include __DIR__ . '/vendor/jbzoo/codestyle/src/phan/default.php';

return array_merge($default, [
$phanConfig = array_merge($default, [
'directory_list' => [
'src',

Expand All @@ -30,3 +30,9 @@
'vendor/wikimedia/less.php/lib/Less/Parser.php',
]
]);

$phanConfig['plugins'] = array_filter($phanConfig['plugins'], function ($plugin) {
return $plugin !== 'UnusedSuppressionPlugin';
});

return $phanConfig;

0 comments on commit 2f23550

Please sign in to comment.