From f887b332fcf5289a12dae0f6a4b93d5b7c5083fe Mon Sep 17 00:00:00 2001 From: Jonatas Souza Date: Sat, 20 Jan 2024 04:59:19 -0300 Subject: [PATCH] setting up psr12 as default style --- .php_cs | 62 ------------------------------------------------ .scrutinizer.yml | 37 ----------------------------- 2 files changed, 99 deletions(-) delete mode 100644 .php_cs delete mode 100644 .scrutinizer.yml diff --git a/.php_cs b/.php_cs deleted file mode 100644 index 4e6698c..0000000 --- a/.php_cs +++ /dev/null @@ -1,62 +0,0 @@ -level(CS\FixerInterface::PSR2_LEVEL) - ->fixers([ - 'array_element_no_space_before_comma', - 'array_element_white_space_after_comma', - 'duplicate_semicolon', - 'extra_empty_lines', - 'function_typehint_space', - 'include', - 'join_function', - 'list_commas', - 'method_argument_default_value', - 'multiline_array_trailing_comma', - 'namespace_no_leading_whitespace', - 'new_with_braces', - 'no_blank_lines_after_class_opening', - 'object_operator', - 'operators_spaces', - 'phpdoc_indent', - 'phpdoc_inline_tag', - 'phpdoc_no_access', - 'phpdoc_no_empty_return', - 'phpdoc_no_package', - 'phpdoc_scalar', - 'phpdoc_separation', - 'phpdoc_short_description', - 'phpdoc_type_to_var', - 'phpdoc_types', - 'phpdoc_var_without_name', - 'print_to_echo', - 'remove_leading_slash_use', - 'remove_lines_between_uses', - 'return', - 'short_bool_cast', - 'single_array_no_trailing_comma', - 'single_blank_line_before_namespace', - 'single_quote', - 'spaces_cast', - 'standardize_not_equal', - 'ternary_spaces', - 'trim_array_spaces', - 'unalign_double_arrow', - 'unalign_equals', - 'unary_operators_spaces', - 'unneeded_control_parentheses', - 'unused_use', - 'whitespacy_lines', - 'concat_with_spaces', - 'newline_after_open_tag', - 'ordered_use', - 'phpdoc_order', - 'short_array_syntax', - 'strict_param', - ]) - ->finder( - CS\Finder\DefaultFinder::create() - ->in([__DIR__ . '/src', __DIR__ . '/tests']) - ); diff --git a/.scrutinizer.yml b/.scrutinizer.yml deleted file mode 100644 index b1d8692..0000000 --- a/.scrutinizer.yml +++ /dev/null @@ -1,37 +0,0 @@ - -filter: - excluded_paths: [tests/*, data/*, vendor/*] - paths: [src/*] - -checks: - php: - code_rating: true - remove_extra_empty_lines: true - remove_php_closing_tag: true - remove_trailing_whitespace: true - fix_use_statements: - remove_unused: true - preserve_multiple: false - preserve_blanklines: true - order_alphabetically: true - fix_php_opening_tag: true - fix_linefeed: true - fix_line_ending: true - fix_identation_4spaces: true - fix_doc_comments: true -tools: - external_code_coverage: - timeout: 600 - php_analyzer: true - php_code_coverage: false - php_code_sniffer: - config: - standard: PSR2 - filter: - paths: ['src'] - php_loc: - enabled: true - excluded_dirs: [vendor, tests] - php_cpd: - enabled: true - excluded_dirs: [vendor, tests, data]