Completed
Pull Request — master (#26)
by
unknown
02:32
created

Checkout Config

filter:
    excluded_paths:
        - doc/*
        - vendor/*
checks:
    php:
        duplication: false

Repository Config

filter:
    excluded_paths:
        - 'tests/*'
        - '*.min.js'
checks:
    php:
        duplication: false
    javascript:
        var_sometimes_initialized: false
        var_never_initialized: false
        valid_typeof: false
        use_isnan: false
        unsafe_undefined: false
        unsafe_mutable_variable_usage: false
        nsp_vulnerabilities: false
        no_with: false
        no_void: false
        no_use_before_define: false
        jsdoc_non_existent_params: false
        no_unused_vars: false
        no_unused_function: false
        no_unused_const: false
        no_unused_expressions: false
        no_unused_assignment: false
        no_unreachable: false
        no_undef_init: false
        no_undef: false
        no_sparse_arrays: false
        no_shadow_builtins: false
        no_sequences: false
        no_return_assign: false
        no_redeclared_const: false
        no_redeclare: false
        no_process_exit: false
        no_path_concat: false
        no_new_wrappers: false
        no_new_require: false
        no_new_func: false
        no_negated_in_lhs: false
        no_native_reassign: false
        no_label_var: false
        no_empty_label: false
        no_empty_class: false
        no_empty: false
        no_dupe_keys: false
        no_delete_var: false
        no_debugger: false
        no_constant_condition: false
        no_console: false
        no_comma_dangle: false
        no_caller: false
        no_bitwise: false
        no_array_constructor: false
        no_alias_builtins: false
        new_cap: false
        jsdoc_no_duplicate_params: false
        guard_for_in: false
        duplicate_code: false
        curly: false
        consistent_return: false
        code_rating: false
        check_unused_parameters: false
        check_unused_object_creation: false
        check_unused_member_calls: false
        check_unnecessary_return: false
        check_unnecessary_continue: false
        check_undeclared_vars: false
        check_try_statement: false
        check_too_many_arguments: false
        'check_switch_unintended label': false
        'check_switch_no_uncommented_fallthrough"': false
        check_switch_no_default: false
        check_switch_default_only: false
        check_switch_default_not_last: false
        check_switch_ambiguous_test: false
        check_loop_no_body: false
        check_for_loops_test: false
        no_invalid_regexp: false
        no_inner_declarations: false
        no_implied_eval: false
        no_func_assign: false
        no_extra_bind: false
        no_extend_native: false
        no_ex_assign: false
        no_eval: false

coding_style:
    php:
        indentation:
            general:
                use_tabs: true
        spaces:
            around_operators:
                concatenation: true
        braces:
            classes_functions:
                class: new-line
                function: new-line
            if:
                opening: end-of-line
            for:
                opening: end-of-line
            while:
                opening: end-of-line
            do_while:
                opening: end-of-line
            switch:
                opening: end-of-line
            try:
                opening: end-of-line
        upper_lower_casing:
            keywords:
                general: lower
            constants:
                true_false_null: lower