Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
chamilo-lms/.php_cs.dist

84 lines
2.4 KiB

7 years ago
<?php
$header = '/* For licensing terms, see /license.txt */';
$rules = [
'@Symfony' => true,
//'@Symfony:risky' => true,
7 years ago
'array_syntax' => [
'syntax' => 'short',
],
/*'header_comment' => [
7 years ago
'header' => $header,
],*/
'blank_line_after_opening_tag' => false,
7 years ago
'no_extra_consecutive_blank_lines' => true,
'multiline_comment_opening_closing' => true,
'yoda_style' => false,
'phpdoc_to_comment' => false,
'phpdoc_no_package' => false,
'phpdoc_annotation_without_dot' => false,
'increment_style' => ['style' => 'post'],
'no_useless_else' => false,
//'no_php4_constructor' => true,
'single_quote' => false,
7 years ago
'no_useless_return' => true,
'ordered_class_elements' => true,
'ordered_imports' => true,
'phpdoc_order' => true,
'no_break_comment' => true,
//'@PHP56Migration' => true,
//'@PHP56Migration:risky' => true,
//'@PHPUnit57Migration:risky' => true,
7 years ago
// To be tested before insertion:
// 'strict_comparison' => true,
// 'strict_param' => true,
// 'php_unit_strict' => true,
];
$finder = PhpCsFixer\Finder::create()
->exclude('assets')
->exclude('bin')
7 years ago
->exclude('documentation')
->exclude('main/inc/lib/internationalization_database')
->exclude('main/inc/lib/javascript')
->exclude('main/inc/lib/kses-0.2.2')
->exclude('main/inc/lib/mimetex')
->exclude('main/inc/lib/nusoap')
->exclude('main/inc/lib/opengraph')
->exclude('main/inc/lib/ppt2png')
->exclude('main/inc/lib/pear')
->exclude('main/inc/lib/svg-edit')
->exclude('main/inc/lib/wami-recorder')
->exclude('main/inc/lib/xajax')
->exclude('main/lp/packaging')
->exclude('main/template')
->exclude('main/lang')
->exclude('plugin/buycourses/src/Culqi')
->exclude('plugin/buycourses/src/Requests')
->exclude('plugin/vchamilo/cli')
->exclude('plugin/pens/lib')
->exclude('plugin/bbb/lib')
->exclude('plugin/ims_lti')
->exclude('plugin/sepe/src/wsse')
->exclude('plugin/test2pdf/class')
->exclude('plugin/jcapture/src')
->exclude('plugin/jcapture/lib')
7 years ago
->exclude('tests')
->exclude('var')
7 years ago
->exclude('vendor')
7 years ago
->exclude('web')
->notPath('main/admin/db.php')
->notPath('public/check.php')
->notPath('main/admin/ldap_synchro.php')
->notPath('main/chat/emoji_strategy.php')
7 years ago
->in(__DIR__)
;
return PhpCsFixer\Config::create()
7 years ago
->setRules(
$rules
7 years ago
)
->setFinder($finder);