Skip to content
Snippets Groups Projects
Select Git revision
  • eb7575aee8c901be7003f53fb7997f47d5347eaf
  • master default protected
  • feat/message-handling
  • feat/request-id
  • 1.13.2
  • 1.13.1
  • 1.13.0
  • 1.12.1
  • 1.12.0
  • 1.11.0
  • 1.11.0-beta2
  • 1.11.0-beta1
  • 1.10.2
  • 1.10.1
  • 1.10.0
  • 1.9.0
  • 1.8.0
  • 1.7.4
  • 1.7.3
  • 1.7.2
  • 1.7.1
  • 1.7.0
  • 1.6.2
  • 1.6.2-beta2
24 results

.editorconfig

Blame
  • .editorconfig 1.80 KiB
    # This file is for unifying the coding style for different editors and IDEs
    # editorconfig.org
    
    # WordPress Coding Standards
    # https://make.wordpress.org/core/handbook/coding-standards/
    
    # Configuration for PhpStorm
    
    root = true
    
    [*]
    charset = utf-8
    end_of_line = lf
    insert_final_newline = true
    trim_trailing_whitespace = true
    indent_style = tab
    indent_size = 4
    tab_width = 4
    ij_continuation_indent_size = 4
    
    [{*.ctp,*.hphp,*.inc,*.module,*.php,*.php4,*.php5,*.phtml}]
    ij_php_align_assignments = true
    ij_php_align_class_constants = true
    ij_php_align_key_value_pairs = true
    ij_php_align_phpdoc_comments = true
    ij_php_align_phpdoc_param_names = true
    ij_php_class_brace_style = end_of_line
    ij_php_comma_after_last_array_element = true
    ij_php_else_if_style = combine
    ij_php_force_short_declaration_array_style = true
    ij_php_getters_setters_naming_style = snake_case
    ij_php_if_brace_force = always
    ij_php_lower_case_boolean_const = true
    ij_php_lower_case_null_const = true
    ij_php_method_brace_style = end_of_line
    ij_php_phpdoc_blank_line_before_tags = true
    ij_php_phpdoc_blank_lines_around_parameters = true
    ij_php_phpdoc_keep_blank_lines = false
    ij_php_phpdoc_wrap_long_lines = true
    ij_php_space_after_type_cast = true
    ij_php_space_after_unary_not = true
    ij_php_space_before_unary_not = true
    ij_php_spaces_around_var_within_brackets = true
    ij_php_spaces_within_array_initializer_braces = true
    ij_php_spaces_within_catch_parentheses = true
    ij_php_spaces_within_for_parentheses = true
    ij_php_spaces_within_if_parentheses = true
    ij_php_spaces_within_method_call_parentheses = true
    ij_php_spaces_within_method_parentheses = true
    ij_php_spaces_within_parentheses = true
    ij_php_spaces_within_switch_parentheses = true
    ij_php_spaces_within_while_parentheses = true
    ij_php_ternary_operation_signs_on_next_line = true
    ij_php_variable_naming_style = snake_case