Fix single quotes CS (#9283)

* Fix "single_quote"

* fix "escape_implicit_backslashes"

* fix typo from f363481c

* fix single quotes in JS

* fix some minor JS CS

* fix CS v3.45.0
This commit is contained in:
Michael Voříšek
2023-12-31 16:36:55 +01:00
committed by GitHub
parent ffa298d41c
commit 2643be3eaa
221 changed files with 1865 additions and 1870 deletions

View File

@@ -89,8 +89,10 @@ return (new PhpCsFixer\Config())
'blank_line_before_statement' => false,
'class_attributes_separation' => false,
'control_structure_continuation_position' => false,
'escape_implicit_backslashes' => false, // TODO fix after "single_quote" rule is fixed
'explicit_string_variable' => false,
'fully_qualified_strict_types' => [
'import_symbols' => false,
],
'general_phpdoc_annotation_remove' => false,
'increment_style' => false,
'method_argument_space' => false,
@@ -103,7 +105,6 @@ return (new PhpCsFixer\Config())
'phpdoc_annotation_without_dot' => false,
'phpdoc_summary' => false,
'single_line_comment_spacing' => false,
'single_quote' => false,
'ternary_to_null_coalescing' => false,
'visibility_required' => false,