-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
86 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use PHP_CodeSniffer\Standards\Generic\Sniffs\Files\LineLengthSniff; | ||
|
||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Default Preset | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This option controls the default preset that will be used by PHP Insights | ||
| to make your code reliable, simple, and clean. However, you can always | ||
| adjust the `Metrics` and `Insights` below in this configuration file. | ||
| | ||
| Supported: "default", "laravel", "symfony", "magento2", "drupal" | ||
| | ||
*/ | ||
|
||
'preset' => 'default', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Configuration | ||
|-------------------------------------------------------------------------- | ||
| | ||
| Here you may adjust all the various `Insights` that will be used by PHP | ||
| Insights. You can either add, remove or configure `Insights`. Keep in | ||
| mind, that all added `Insights` must belong to a specific `Metric`. | ||
| | ||
*/ | ||
|
||
'exclude' => [ | ||
], | ||
|
||
'add' => [ | ||
\NunoMaduro\PhpInsights\Domain\Metrics\Code\Comments::class => [ | ||
\PhpCsFixer\Fixer\Phpdoc\PhpdocSummaryFixer::class, | ||
], | ||
], | ||
|
||
'remove' => [ | ||
], | ||
|
||
'config' => [ | ||
LineLengthSniff::class => [ | ||
'lineLimit' => 120, | ||
'absoluteLineLimit' => 120, | ||
'ignoreComments' => true, | ||
], | ||
], | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Requirements | ||
|-------------------------------------------------------------------------- | ||
| | ||
| Here you may define a level you want to reach per `Insights` category. | ||
| When a score is lower than the minimum level defined, then an error | ||
| code will be returned. This is optional and individually defined. | ||
| | ||
*/ | ||
|
||
'requirements' => [ | ||
'min-quality' => 96.0, | ||
'min-architecture' => 96.0, | ||
'min-style' => 96.0, | ||
], | ||
]; |