mirror of
https://github.com/joomla-extensions/weblinks.git
synced 2024-11-10 15:20:57 +00:00
68 lines
2.4 KiB
PHP
68 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* @package Joomla.Site
|
|
*
|
|
* @copyright (C) 2021 Open Source Matters, Inc. <https://www.joomla.org>
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* This is the configuration file for php-cs-fixer
|
|
*
|
|
* @see https://github.com/FriendsOfPHP/PHP-CS-Fixer
|
|
* @see https://mlocati.github.io/php-cs-fixer-configurator/#version:3.0
|
|
*
|
|
*
|
|
* If you would like to run the automated clean up, then open a command line and type one of the commands below
|
|
*
|
|
* To run a quick dry run to see the files that would be modified:
|
|
*
|
|
* ./component/backend/vendor/bin/php-cs-fixer fix --dry-run
|
|
*
|
|
* To run a full check, with automated fixing of each problem :
|
|
*
|
|
* ./component/backend/vendor/bin/php-cs-fixer fix
|
|
*
|
|
* You can run the clean up on a single file if you need to, this is faster
|
|
*
|
|
* ./component/backend/vendor/bin/php-cs-fixer fix --dry-run administrator/index.php
|
|
* ./component/backend/vendor/bin/php-cs-fixer fix administrator/index.php
|
|
*/
|
|
|
|
// Add all the core Joomla folders
|
|
$finder = PhpCsFixer\Finder::create()
|
|
->in(
|
|
[
|
|
__DIR__ . '/src',
|
|
]
|
|
)
|
|
// Ignore template files as PHP CS fixer can't handle them properly
|
|
// https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues/3702#issuecomment-396717120
|
|
->notPath('/vendor/')
|
|
->notPath('/tmpl/');
|
|
|
|
$config = new PhpCsFixer\Config();
|
|
$config
|
|
->setRiskyAllowed(true)
|
|
->setHideProgress(false)
|
|
->setUsingCache(false)
|
|
->setRules(
|
|
[
|
|
// Basic ruleset is PSR 12
|
|
'@PSR12' => true,
|
|
// Short array syntax
|
|
'array_syntax' => ['syntax' => 'short'],
|
|
// Lists should not have a trailing comma like list($foo, $bar,) = ...
|
|
'no_trailing_comma_in_list_call' => true,
|
|
// Arrays on multiline should have a trailing comma
|
|
'trailing_comma_in_multiline' => ['elements' => ['arrays']],
|
|
// Align elements in multiline array and variable declarations on new lines below each other
|
|
'binary_operator_spaces' => ['operators' => ['=>' => 'align_single_space_minimal', '=' => 'align']],
|
|
// The "No break" comment in switch statements
|
|
'no_break_comment' => ['comment_text' => 'No break'],
|
|
]
|
|
)
|
|
->setFinder($finder);
|
|
|
|
return $config;
|