-
Notifications
You must be signed in to change notification settings - Fork 19
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
1 parent
d4c7317
commit 8c28696
Showing
5 changed files
with
31 additions
and
79 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 |
---|---|---|
@@ -1,69 +1,23 @@ | ||
<?php | ||
|
||
/** | ||
* This file represents the configuration for Code Sniffing PSR-2-related | ||
* automatic checks of coding guidelines | ||
* Install @fabpot's great php-cs-fixer tool via | ||
* | ||
* $ composer global require friendsofphp/php-cs-fixer | ||
* | ||
* And then simply run | ||
* | ||
* $ php-cs-fixer fix | ||
* | ||
* For more information read: | ||
* http://www.php-fig.org/psr/psr-2/ | ||
* http://cs.sensiolabs.org | ||
*/ | ||
|
||
if (PHP_SAPI !== 'cli') { | ||
die('This script supports command line usage only. Please check your command.'); | ||
} | ||
|
||
$header = <<<EOF | ||
This file is part of the package dmind/cookieman. | ||
For the full copyright and license information, please read the | ||
LICENSE file that was distributed with this source code. | ||
EOF; | ||
|
||
return (new PhpCsFixer\Config) | ||
->setRiskyAllowed(true) | ||
->setRules([ | ||
'@PSR2' => true, | ||
'header_comment' => [ | ||
'header' => $header | ||
$config = \TYPO3\CodingStandards\CsFixerConfig::create(); | ||
$config->setFinder( | ||
PhpCsFixer\Finder::create() | ||
->ignoreVCS(true) | ||
->ignoreVCSIgnored(true) | ||
->notName(['ext_localconf.php', 'ext_tables.php', 'ext_emconf.php', 'additional.php']) | ||
->exclude(['Tests/Acceptance/Support/_generated/']) | ||
->in(__DIR__) | ||
); | ||
$config->addRules( | ||
[ | ||
'yoda_style' => false, // dude, I love yoda style | ||
'function_declaration' => [ | ||
'closure_function_spacing' => 'none', | ||
'closure_fn_spacing' => 'none', | ||
], | ||
'declare_strict_types' => true, | ||
'no_leading_import_slash' => true, | ||
'no_trailing_comma_in_singleline_array' => true, | ||
'no_singleline_whitespace_before_semicolons' => true, | ||
'no_unused_imports' => true, | ||
'concat_space' => ['spacing' => 'one'], | ||
'no_whitespace_in_blank_line' => true, | ||
'ordered_imports' => true, | ||
'single_quote' => true, | ||
'no_empty_statement' => true, | ||
'no_extra_blank_lines' => true, | ||
'phpdoc_no_package' => true, | ||
'phpdoc_scalar' => true, | ||
'no_blank_lines_after_phpdoc' => true, | ||
'array_syntax' => ['syntax' => 'short'], | ||
'whitespace_after_comma_in_array' => true, | ||
'function_typehint_space' => true, | ||
'single_line_comment_style' => true, | ||
'no_alias_functions' => true, | ||
'lowercase_cast' => true, | ||
'no_leading_namespace_whitespace' => true, | ||
'native_function_casing' => true, | ||
'self_accessor' => true, | ||
'no_short_bool_cast' => true, | ||
'no_unneeded_control_parentheses' => true | ||
]) | ||
->setFinder( | ||
PhpCsFixer\Finder::create() | ||
->ignoreVCS(true) | ||
->ignoreVCSIgnored(true) | ||
->notName(['ext_localconf.php', 'ext_tables.php', 'ext_emconf.php', 'additional.php']) | ||
->in(__DIR__) | ||
); | ||
'single_line_empty_body' => false, | ||
] | ||
); | ||
|
||
return $config; |
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
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