schneespur/vendor/sabberworm/php-css-parser/config/php-cs-fixer.php
Michael 2c63440ed8 Revert: move code back to project root from schneespur/ subdirectory
- Reverts the schneespur/ subdirectory restructure (b8e426b)
- Restores package.json and vite.config.js (needed for npm build, were
  removed in an earlier cleanup before the restructure)
- Updates public/build/ assets with current Vite output (new content hashes)
2026-05-17 18:24:26 +00:00

104 lines
3.4 KiB
PHP

<?php
declare(strict_types=1);
use PhpCsFixer\Config;
return (new Config())
->setRiskyAllowed(true)
->setRules(
[
'@PER-CS2x0' => true,
'@PER-CS2x0:risky' => true,
'@PHPUnit5x0Migration:risky' => true,
'@PHPUnit5x2Migration:risky' => true,
'@PHPUnit5x4Migration:risky' => true,
'@PHPUnit5x5Migration:risky' => true,
'@PHPUnit5x6Migration:risky' => true,
'@PHPUnit5x7Migration:risky' => true,
'@PHPUnit6x0Migration:risky' => true,
'@PHPUnit7x5Migration:risky' => true,
'@PHPUnit8x4Migration:risky' => true,
// overwrite the PER2 defaults to restore compatibility with PHP 7.x
'trailing_comma_in_multiline' => ['elements' => ['arrays']],
// casing
'magic_constant_casing' => true,
'native_function_casing' => true,
// cast notation
'modernize_types_casting' => true,
'no_short_bool_cast' => true,
// class notation
'no_php4_constructor' => true,
// comment
'no_empty_comment' => true,
// control structure
'yoda_style' => ['equal' => false, 'identical' => false, 'less_and_greater' => false],
// function notation
'nullable_type_declaration_for_default_null_value' => true,
// import
'no_unused_imports' => true,
// language construct
'combine_consecutive_issets' => true,
'combine_consecutive_unsets' => true,
'dir_constant' => true,
'is_null' => true,
'nullable_type_declaration' => true,
// namespace notation
'no_leading_namespace_whitespace' => true,
// operator
'standardize_not_equals' => true,
'ternary_to_null_coalescing' => true,
// PHP tag
'linebreak_after_opening_tag' => true,
// PHPUnit
'php_unit_construct' => true,
'php_unit_dedicate_assert' => ['target' => 'newest'],
'php_unit_expectation' => ['target' => 'newest'],
'php_unit_fqcn_annotation' => true,
'php_unit_mock_short_will_return' => true,
'php_unit_set_up_tear_down_visibility' => true,
'php_unit_test_annotation' => ['style' => 'annotation'],
'php_unit_test_case_static_method_calls' => ['call_type' => 'self'],
// PHPDoc
'no_blank_lines_after_phpdoc' => true,
'no_empty_phpdoc' => true,
'phpdoc_indent' => true,
'phpdoc_no_package' => true,
'phpdoc_trim' => true,
'phpdoc_types_order' => ['null_adjustment' => 'always_last', 'sort_algorithm' => 'none'],
// return notation
'no_useless_return' => true,
// semicolon
'no_empty_statement' => true,
'no_singleline_whitespace_before_semicolons' => true,
'semicolon_after_instruction' => true,
// strict
'declare_strict_types' => true,
'strict_param' => true,
// string notation
'single_quote' => true,
'string_implicit_backslashes' => ['single_quoted' => 'escape'],
// whitespace
'statement_indentation' => false,
]
);