-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dependabot/npm_and_yarn/webpack-5.93.0
- Loading branch information
Showing
655 changed files
with
25,326 additions
and
22,292 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?php | ||
|
||
if (php_sapi_name() !== 'cli') { | ||
throw new \LogicException(); | ||
} | ||
|
||
$rules = [ | ||
'@Symfony' => true, | ||
'@Symfony:risky' => true, | ||
// '@PHP83Migration' => true, | ||
|
||
// @Symfony のうち、以下のルールを無効化 | ||
'phpdoc_align' => false, // phpdoc の内容が削除されてしまう場合がある | ||
'phpdoc_summary' => false, // 日本語なので不要 | ||
'phpdoc_annotation_without_dot' => false, // 日本語なので不要 | ||
'no_superfluous_phpdoc_tags' => false, // 副作用があるため | ||
'increment_style' => false, // 強制しなくて良い | ||
'yoda_style' => false, // 強制しなくて良い | ||
|
||
// @Symfony:risky のうち、以下のルールを無効化 | ||
'psr_autoloading' => false, // PSR-4 に準拠していないため | ||
'is_null' => false, // 副作用があるため | ||
'native_constant_invocation' => false, // namespace を使用していないため不要 | ||
'string_length_to_empty' => false, // 副作用があるため | ||
'ternary_to_elvis_operator' => false, // 副作用があるため | ||
]; | ||
|
||
$finder = \PhpCsFixer\Finder::create() | ||
->in(__DIR__.'/data/class') | ||
->in(__DIR__.'/data/class_extends') | ||
->in(__DIR__.'/data/module') | ||
->in(__DIR__.'/data/smarty_extends') | ||
->in(__DIR__.'/tests') | ||
->name('*.php') | ||
; | ||
$config = new \PhpCsFixer\Config(); | ||
return $config | ||
->setRules($rules) | ||
->setFinder($finder) | ||
; |
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
Oops, something went wrong.