Skip to content

Instantly share code, notes, and snippets.

@nobuhiko
Created May 19, 2021 09:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nobuhiko/8c31104392daf296d462390f87424e74 to your computer and use it in GitHub Desktop.
Save nobuhiko/8c31104392daf296d462390f87424e74 to your computer and use it in GitHub Desktop.
<?php
return PhpCsFixer\Config::create()
->setRiskyAllowed(true)
->setRules([
// '@PHP71Migration' => true,
// '@PSR2' => true,
// 'align_multiline_comment' => true,
// 'array_syntax' => ['syntax' => 'short'],
// 'binary_operator_spaces' => true,
// 'blank_line_after_opening_tag' => true,
// 'blank_line_before_statement' => ['statements' => ['declare', 'do', 'for', 'foreach', 'if', 'switch', 'try']],
// 'cast_spaces' => true,
// 'class_attributes_separation' => true,
// 'combine_consecutive_issets' => true,
// 'combine_consecutive_unsets' => true,
// 'compact_nullable_typehint' => true,
// 'concat_space' => ['spacing' => 'one'],
// 'declare_equal_normalize' => false,
// 'declare_strict_types' => false,
// 'dir_constant' => true,
'ereg_to_preg' => true,
// 'escape_implicit_backslashes' => true,
// 'explicit_indirect_variable' => true,
// 'explicit_string_variable' => true,
// 'final_internal_class' => true,
// 'function_to_constant' => true,
// 'function_typehint_space' => true,
// 'general_phpdoc_annotation_remove' => ['annotations' => ['class', 'package', 'author']],
// 'hash_to_slash_comment' => true,
// 'heredoc_to_nowdoc' => true,
// 'include' => true,
// 'is_null' => ['use_yoda_style' => false],
// 'linebreak_after_opening_tag' => true,
// 'list_syntax' => true,
// 'lowercase_cast' => true,
// 'magic_constant_casing' => true,
// 'method_chaining_indentation' => true,
// 'method_separation' => true,
// 'modernize_types_casting' => true,
// 'native_function_casing' => true,
// 'no_alias_functions' => true,
// 'no_blank_lines_after_class_opening' => true,
// 'no_blank_lines_after_phpdoc' => true,
// 'no_empty_comment' => true,
// 'no_empty_phpdoc' => true,
// 'no_empty_statement' => true,
// 'no_extra_consecutive_blank_lines' => ['tokens' => ['break', 'continue', 'extra', 'return', 'throw', 'use', 'parenthesis_brace_block', 'square_brace_block', 'curly_brace_block']],
// 'no_homoglyph_names' => true,
// 'no_leading_import_slash' => true,
// 'no_leading_namespace_whitespace' => true,
// 'no_mixed_echo_print' => true,
// 'no_multiline_whitespace_around_double_arrow' => true,
// 'no_multiline_whitespace_before_semicolons' => true,
// 'no_null_property_initialization' => true,
'no_php4_constructor' => true,
// 'no_short_bool_cast' => true,
// 'no_singleline_whitespace_before_semicolons' => true,
// 'no_spaces_around_offset' => true,
// 'no_trailing_comma_in_list_call' => true,
// 'no_trailing_comma_in_singleline_array' => true,
// 'no_unneeded_control_parentheses' => true,
// 'no_unneeded_curly_braces' => true,
// 'no_unneeded_final_method' => true,
// 'no_unreachable_default_argument_value' => true,
// 'no_unused_imports' => true,
// 'no_useless_else' => true,
// 'no_useless_return' => true,
// 'no_whitespace_before_comma_in_array' => true,
// 'no_whitespace_in_blank_line' => true,
// 'normalize_index_brace' => true,
// 'object_operator_without_whitespace' => true,
// 'ordered_class_elements' => true,
// 'ordered_imports' => true,
// 'php_unit_construct' => true,
// 'php_unit_dedicate_assert' => true,
// 'php_unit_mock' => true,
// 'php_unit_namespaced' => true,
// 'phpdoc_add_missing_param_annotation' => ['only_untyped' => false],
// 'phpdoc_align' => ['tags' => ['param']],
// 'phpdoc_annotation_without_dot' => true,
// 'phpdoc_indent' => true,
// 'phpdoc_inline_tag' => true,
// 'phpdoc_no_access' => true,
// 'phpdoc_no_empty_return' => true,
// 'phpdoc_no_package' => true,
// 'phpdoc_order' => true,
// 'phpdoc_return_self_reference' => true,
// 'phpdoc_scalar' => true,
// 'phpdoc_single_line_var_spacing' => true,
// 'phpdoc_summary' => true,
// 'phpdoc_to_comment' => true,
// 'phpdoc_trim' => true,
// 'phpdoc_types' => true,
// 'phpdoc_types_order' => true,
// 'phpdoc_var_without_name' => true,
// 'pow_to_exponentiation' => true,
// 'protected_to_private' => true,
// 'random_api_migration' => true,
// 'return_type_declaration' => true,
// 'self_accessor' => true,
// 'semicolon_after_instruction' => true,
// 'short_scalar_cast' => true,
// 'simplified_null_return' => true,
// 'single_blank_line_before_namespace' => true,
// 'single_line_comment_style' => true,
// 'single_quote' => true,
// 'space_after_semicolon' => ['remove_in_empty_for_expressions' => true],
// 'standardize_not_equals' => true,
// 'ternary_operator_spaces' => true,
// 'ternary_to_null_coalescing' => true,
// 'trailing_comma_in_multiline_array' => true,
// 'trim_array_spaces' => true,
// 'unary_operator_spaces' => true,
// 'void_return' => true,
// 'whitespace_after_comma_in_array' => true,
// 'yoda_style' => ['equal' => false, 'identical' => false],
])
->setFinder(PhpCsFixer\Finder::create()
->exclude('vendor')
->in(__DIR__)
)
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment