Asymptix/Framework

View on GitHub
.styleci.yml

Summary

Maintainability
Test Coverage
preset: none

enabled:
  #- align_double_arrow
  #- align_equals
  #- binary_operator_spaces                                                    x
  - blank_line_after_namespace
  - blank_line_after_opening_tag
  - blank_line_before_return
  #- braces
  #- cast_spaces
  #- class_definition
  - combine_consecutive_unsets
  - concat_with_spaces
  #- concat_without_spaces
  #- declare_equal_normalize
  #- declare_strict_types
  #- dir_constant
  - echo_to_print
  - elseif
  - encoding
  #- ereg_to_preg
  - full_opening_tag
  - function_declaration
  - function_typehint_space
  - hash_to_slash_comment
  - heredoc_to_nowdoc
  #- include
  #- linebreak_after_opening_tag
  #- long_array_syntax
  - lowercase_cast
  - lowercase_constants
  - lowercase_keywords
  - method_argument_space
  #- method_separation                                                         x
  #- modernize_types_casting
  - native_function_casing
  #- new_with_braces
  - no_alias_functions
  #- no_blank_lines_after_class_opening
  - no_blank_lines_after_phpdoc
  #- no_blank_lines_before_namespace
  - no_closing_tag
  - no_empty_comment
  - no_empty_phpdoc
  - no_empty_statement
  - no_extra_consecutive_blank_lines
  - no_leading_import_slash
  - no_leading_namespace_whitespace
  - no_multiline_whitespace_around_double_arrow
  - no_multiline_whitespace_before_semicolons
  - no_php4_constructor
  - no_short_bool_cast
  #- no_short_echo_tag
  - no_singleline_whitespace_before_semicolons
  - no_spaces_after_function_name
  - no_spaces_inside_offset
  - no_spaces_inside_parenthesis
  - no_tab_indentation
  - no_trailing_comma_in_list_call
  - no_trailing_comma_in_singleline_array
  - no_trailing_whitespace
  - no_trailing_whitespace_in_comment
  #- no_unneeded_control_parentheses
  - no_unreachable_default_argument_value
  - no_unused_imports
  #- no_useless_else
  - no_useless_return
  - no_whitespace_before_comma_in_array
  - no_whitespace_in_blank_line
  - normalize_index_brace
  #- not_operator_with_space
  #- not_operator_with_successor_space
  - object_operator_without_whitespace
  #- ordered_class_elements
  #- ordered_imports
  #- pre_increment
  #- print_to_echo
  #- psr0
  - psr4
  #- random_api_migration
  #- self_accessor                                                             ?
  - semicolon_after_instruction
  - short_array_syntax
  - short_scalar_cast
  #- simplified_null_return
  - single_blank_line_at_eof
  - single_blank_line_before_namespace
  - single_class_element_per_statement
  - single_import_per_statement
  - single_line_after_imports
  #- single_quote
  - space_after_semicolon
  - standardize_not_equals
  #- strict_comparison
  #- strict_param
  - switch_case_semicolon_to_colon
  - switch_case_space
  - ternary_operator_spaces
  #- trailing_comma_in_multiline_array
  - trim_array_spaces
  #- unalign_double_arrow
  #- unalign_equals
  #- unary_operator_spaces
  - unix_line_endings
  - visibility_required
  - whitespace_after_comma_in_array

  # PHPDocs
  #- phpdoc_align
  #- phpdoc_indent
  - phpdoc_inline_tag
  - phpdoc_no_access
  - phpdoc_no_package
  #- phpdoc_order
  - phpdoc_scalar
  #- phpdoc_separation
  - phpdoc_single_line_var_spacing
  - phpdoc_summary
  - phpdoc_to_comment
  - phpdoc_trim
  - phpdoc_type_to_var
  - phpdoc_types
  - phpdoc_var_without_name

  #PHPUnit
  #- php_unit_construct
  #- php_unit_dedicate_assert
  #- php_unit_strict

finder:
  path:
    - "framework/"
  exclude:
    - "docs"
  name:
    - "*.php"
  not-name:
    - "*.tpl.php"