We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ee2ec9 commit c3dbfbfCopy full SHA for c3dbfbf
easy-ci.php
@@ -3,8 +3,18 @@
3
declare(strict_types=1);
4
5
use Symplify\EasyCI\Config\EasyCIConfig;
6
+use Symplify\RuleDocGenerator\Contract\Category\CategoryInfererInterface;
7
+use Symplify\RuleDocGenerator\Contract\ConfigurableRuleInterface;
8
+use Symplify\RuleDocGenerator\Contract\RuleCodeSamplePrinterInterface;
9
+use Symplify\RuleDocGenerator\ValueObject\CodeSample\ComposerJsonAwareCodeSample;
10
+use Symplify\RuleDocGenerator\ValueObject\CodeSample\ExtraFileCodeSample;
11
12
return static function (EasyCIConfig $easyCIConfig): void {
13
$easyCIConfig->typesToSkip([
14
+ CategoryInfererInterface::class,
15
+ ConfigurableRuleInterface::class,
16
+ RuleCodeSamplePrinterInterface::class,
17
+ ComposerJsonAwareCodeSample::class,
18
+ ExtraFileCodeSample::class,
19
]);
20
};
0 commit comments