Skip to content
Snippets Groups Projects
Commit b34d21cd authored by Demian Katz's avatar Demian Katz Committed by GitHub
Browse files

Set up configuration for running php-cs-fixer on templates. (#1063)

parent 9a1d1c20
No related merge requests found
...@@ -4,6 +4,7 @@ ChangeLog ...@@ -4,6 +4,7 @@ ChangeLog
\#* \#*
.\#* .\#*
.php_cs.cache .php_cs.cache
.php_cs_template.cache
TAGS TAGS
*~ *~
/downloads /downloads
......
...@@ -103,9 +103,11 @@ ...@@ -103,9 +103,11 @@
<!-- php-cs-fixer (first task applies fixes, second task simply checks if they are needed) --> <!-- php-cs-fixer (first task applies fixes, second task simply checks if they are needed) -->
<target name="php-cs-fixer"> <target name="php-cs-fixer">
<exec command="${srcdir}/vendor/bin/php-cs-fixer fix --config=${srcdir}/tests/vufind.php_cs --verbose" passthru="true" escape="false" /> <exec command="${srcdir}/vendor/bin/php-cs-fixer fix --config=${srcdir}/tests/vufind.php_cs --verbose" passthru="true" escape="false" />
<exec command="${srcdir}/vendor/bin/php-cs-fixer fix --config=${srcdir}/tests/vufind_templates.php_cs --verbose" passthru="true" escape="false" />
</target> </target>
<target name="php-cs-fixer-dryrun"> <target name="php-cs-fixer-dryrun">
<exec command="${srcdir}/vendor/bin/php-cs-fixer fix --config=${srcdir}/tests/vufind.php_cs --dry-run --verbose --diff" passthru="true" escape="false" checkreturn="true" /> <exec command="${srcdir}/vendor/bin/php-cs-fixer fix --config=${srcdir}/tests/vufind.php_cs --dry-run --verbose --diff" passthru="true" escape="false" checkreturn="true" />
<exec command="${srcdir}/vendor/bin/php-cs-fixer fix --config=${srcdir}/tests/vufind_templates.php_cs --dry-run --verbose --diff" passthru="true" escape="false" checkreturn="true" />
</target> </target>
<!-- ESLint --> <!-- ESLint -->
......
<?php
$finder = PhpCsFixer\Finder::create()->in(__DIR__ . '/../themes')
->name('*.phtml');
$rules = [
'align_multiline_comment' => true,
'array_syntax' => ['syntax' => 'short'],
'binary_operator_spaces' => [
'default' => 'single_space',
],
'blank_line_after_namespace' => true,
//'braces' => true, // disabled because we don't want to create inconsistent indentation, but useful to normalize control structure spacing
'cast_spaces' => ['space' => 'none'],
'concat_space' => ['spacing' => 'one'],
'elseif' => true,
'encoding' => true,
//'full_opening_tag' => true, // using full tags is best practice, but it detracts from readability; we should discuss
'function_declaration' => true,
'function_typehint_space' => true,
'indentation_type' => true,
'line_ending' => true,
'lowercase_cast' => true,
'lowercase_constants' => true,
'lowercase_keywords' => true,
'magic_constant_casing' => true,
'method_argument_space' => true,
'method_separation' => true,
'native_function_casing' => true,
'no_blank_lines_after_class_opening' => true,
'no_blank_lines_after_phpdoc' => true,
'no_blank_lines_before_namespace' => true,
'no_empty_comment' => true,
'no_empty_phpdoc' => true,
'no_empty_statement' => true,
'no_extra_consecutive_blank_lines' => true,
'no_leading_import_slash' => true,
'no_leading_namespace_whitespace' => true,
'no_mixed_echo_print' => true,
'no_singleline_whitespace_before_semicolons' => true,
'no_spaces_after_function_name' => true,
'no_spaces_around_offset' => true,
'no_spaces_inside_parenthesis' => true,
'no_trailing_whitespace' => true,
'no_unneeded_control_parentheses' => true,
'no_unneeded_curly_braces' => true,
'no_unused_imports' => true,
'no_useless_return' => true,
'no_whitespace_before_comma_in_array' => true,
'no_whitespace_in_blank_line' => true,
'ordered_imports' => true,
'phpdoc_no_access' => true,
'single_blank_line_at_eof' => true,
'single_class_element_per_statement' => true,
'single_import_per_statement' => true,
'single_line_after_imports' => true,
'short_scalar_cast' => true,
'standardize_not_equals' => true,
'switch_case_semicolon_to_colon' => true,
'switch_case_space' => true,
//'ternary_operator_spaces' => true, // disabled due to bug in php-cs-fixer 2.7.1
'visibility_required' => true,
];
return PhpCsFixer\Config::create()
->setCacheFile(__DIR__ . '/../.php_cs_template.cache')
->setRules($rules)
->setFinder($finder);
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment