├── .circleci └── config.yml ├── .codeclimate.yml ├── .dockerignore ├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── DEVELOPERS.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Makefile ├── README.md ├── Rakefile ├── WERE_HIRING.md ├── base_rubocop.yml ├── bin ├── codeclimate-rubocop └── newver ├── config ├── contents │ ├── bundler │ │ ├── duplicated_gem.md │ │ ├── insecure_protocol_source.md │ │ └── ordered_gems.md │ ├── gemspec │ │ ├── duplicated_assignment.md │ │ ├── ordered_dependencies.md │ │ └── required_ruby_version.md │ ├── layout │ │ ├── access_modifier_indentation.md │ │ ├── align_array.md │ │ ├── align_hash.md │ │ ├── align_parameters.md │ │ ├── block_end_newline.md │ │ ├── case_indentation.md │ │ ├── class_structure.md │ │ ├── closing_parenthesis_indentation.md │ │ ├── comment_indentation.md │ │ ├── dot_position.md │ │ ├── else_alignment.md │ │ ├── empty_line_after_magic_comment.md │ │ ├── empty_line_between_defs.md │ │ ├── empty_lines.md │ │ ├── empty_lines_around_access_modifier.md │ │ ├── empty_lines_around_arguments.md │ │ ├── empty_lines_around_begin_body.md │ │ ├── empty_lines_around_block_body.md │ │ ├── empty_lines_around_class_body.md │ │ ├── empty_lines_around_exception_handling_keywords.md │ │ ├── empty_lines_around_method_body.md │ │ ├── empty_lines_around_module_body.md │ │ ├── extra_spacing.md │ │ ├── first_array_element_line_break.md │ │ ├── first_hash_element_line_break.md │ │ ├── first_method_argument_line_break.md │ │ ├── first_method_parameter_line_break.md │ │ ├── first_parameter_indentation.md │ │ ├── indent_array.md │ │ ├── indent_assignment.md │ │ ├── indent_hash.md │ │ ├── indent_heredoc.md │ │ ├── indentation_consistency.md │ │ ├── indentation_width.md │ │ ├── leading_comment_space.md │ │ ├── multiline_array_brace_layout.md │ │ ├── multiline_assignment_layout.md │ │ ├── multiline_block_layout.md │ │ ├── multiline_hash_brace_layout.md │ │ ├── multiline_method_call_brace_layout.md │ │ ├── multiline_method_call_indentation.md │ │ ├── multiline_method_definition_brace_layout.md │ │ ├── multiline_operation_indentation.md │ │ ├── rescue_ensure_alignment.md │ │ ├── space_after_colon.md │ │ ├── space_after_comma.md │ │ ├── space_after_method_name.md │ │ ├── space_after_not.md │ │ ├── space_after_semicolon.md │ │ ├── space_around_block_parameters.md │ │ ├── space_around_equals_in_parameter_default.md │ │ ├── space_around_keyword.md │ │ ├── space_around_operators.md │ │ ├── space_before_block_braces.md │ │ ├── space_before_comma.md │ │ ├── space_before_comment.md │ │ ├── space_before_first_arg.md │ │ ├── space_before_semicolon.md │ │ ├── space_in_lambda_literal.md │ │ ├── space_inside_array_literal_brackets.md │ │ ├── space_inside_array_percent_literal.md │ │ ├── space_inside_block_braces.md │ │ ├── space_inside_hash_literal_braces.md │ │ ├── space_inside_parens.md │ │ ├── space_inside_percent_literal_delimiters.md │ │ ├── space_inside_range_literal.md │ │ ├── space_inside_reference_brackets.md │ │ └── space_inside_string_interpolation.md │ ├── lint │ │ ├── ambiguous_block_association.md │ │ ├── ambiguous_operator.md │ │ ├── ambiguous_regexp_literal.md │ │ ├── assignment_in_condition.md │ │ ├── block_alignment.md │ │ ├── boolean_symbol.md │ │ ├── circular_argument_reference.md │ │ ├── condition_position.md │ │ ├── debugger.md │ │ ├── def_end_alignment.md │ │ ├── deprecated_class_methods.md │ │ ├── duplicate_case_condition.md │ │ ├── duplicate_methods.md │ │ ├── duplicated_key.md │ │ ├── each_with_object_argument.md │ │ ├── else_layout.md │ │ ├── empty_ensure.md │ │ ├── empty_expression.md │ │ ├── empty_interpolation.md │ │ ├── empty_when.md │ │ ├── end_alignment.md │ │ ├── end_in_method.md │ │ ├── ensure_return.md │ │ ├── float_out_of_range.md │ │ ├── format_parameter_mismatch.md │ │ ├── handle_exceptions.md │ │ ├── implicit_string_concatenation.md │ │ ├── ineffective_access_modifier.md │ │ ├── inherit_exception.md │ │ ├── interpolation_check.md │ │ ├── invalid_character_literal.md │ │ ├── literal_as_condition.md │ │ ├── literal_in_condition.md │ │ ├── literal_in_interpolation.md │ │ ├── loop.md │ │ ├── multiple_compare.md │ │ ├── nested_method_definition.md │ │ ├── nested_percent_literal.md │ │ ├── next_without_accumulator.md │ │ ├── non_local_exit_from_iterator.md │ │ ├── parentheses_as_grouped_expression.md │ │ ├── percent_string_array.md │ │ ├── percent_symbol_array.md │ │ ├── rand_one.md │ │ ├── redundant_with_index.md │ │ ├── redundant_with_object.md │ │ ├── regexp_as_condition.md │ │ ├── require_parentheses.md │ │ ├── rescue_exception.md │ │ ├── rescue_type.md │ │ ├── rescue_without_error_class.md │ │ ├── return_in_void_context.md │ │ ├── safe_navigation_chain.md │ │ ├── shadowed_argument.md │ │ ├── shadowed_exception.md │ │ ├── shadowing_outer_local_variable.md │ │ ├── string_conversion_in_interpolation.md │ │ ├── underscore_prefixed_variable_name.md │ │ ├── unified_integer.md │ │ ├── unneeded_disable.md │ │ ├── unneeded_require_statement.md │ │ ├── unneeded_splat_expansion.md │ │ ├── unreachable_code.md │ │ ├── unused_block_argument.md │ │ ├── unused_method_argument.md │ │ ├── uri_escape_unescape.md │ │ ├── uri_regexp.md │ │ ├── useless_access_modifier.md │ │ ├── useless_assignment.md │ │ ├── useless_comparison.md │ │ ├── useless_else_without_rescue.md │ │ ├── useless_setter_call.md │ │ └── void.md │ ├── metrics │ │ ├── abc_size.md │ │ ├── block_length.md │ │ ├── block_nesting.md │ │ ├── class_length.md │ │ ├── cyclomatic_complexity.md │ │ ├── method_length.md │ │ ├── module_length.md │ │ ├── parameter_lists.md │ │ └── perceived_complexity.md │ ├── naming │ │ ├── accessor_method_name.md │ │ ├── ascii_identifiers.md │ │ ├── binary_operator_parameter_name.md │ │ ├── class_and_module_camel_case.md │ │ ├── constant_name.md │ │ ├── file_name.md │ │ ├── heredoc_delimiter_case.md │ │ ├── heredoc_delimiter_naming.md │ │ ├── method_name.md │ │ ├── predicate_name.md │ │ ├── variable_name.md │ │ └── variable_number.md │ ├── performance │ │ ├── caller.md │ │ ├── case_when_splat.md │ │ ├── casecmp.md │ │ ├── compare_with_block.md │ │ ├── count.md │ │ ├── detect.md │ │ ├── double_start_end_with.md │ │ ├── end_with.md │ │ ├── flat_map.md │ │ ├── hash_each.md │ │ ├── hash_each_methods.md │ │ ├── lstrip_rstrip.md │ │ ├── range_include.md │ │ ├── redundant_block_call.md │ │ ├── redundant_match.md │ │ ├── redundant_merge.md │ │ ├── redundant_sort_by.md │ │ ├── regexp_match.md │ │ ├── reverse_each.md │ │ ├── sample.md │ │ ├── size.md │ │ ├── sort_with_block.md │ │ ├── start_with.md │ │ ├── string_replacement.md │ │ ├── times_map.md │ │ ├── unfreeze_string.md │ │ └── uri_default_parser.md │ ├── rails │ │ ├── action_filter.md │ │ ├── active_support_aliases.md │ │ ├── application_job.md │ │ ├── application_record.md │ │ ├── blank.md │ │ ├── create_table_with_timestamps.md │ │ ├── date.md │ │ ├── delegate.md │ │ ├── delegate_allow_blank.md │ │ ├── dynamic_find_by.md │ │ ├── enum_uniqueness.md │ │ ├── environment_comparison.md │ │ ├── exit.md │ │ ├── file_path.md │ │ ├── find_by.md │ │ ├── find_each.md │ │ ├── has_and_belongs_to_many.md │ │ ├── has_many_or_has_one_dependent.md │ │ ├── http_positional_arguments.md │ │ ├── inverse_of.md │ │ ├── lexically_scoped_action_filter.md │ │ ├── not_null_column.md │ │ ├── output.md │ │ ├── output_safety.md │ │ ├── pluralization_grammar.md │ │ ├── presence.md │ │ ├── present.md │ │ ├── read_write_attribute.md │ │ ├── redundant_receiver_in_with_options.md │ │ ├── relative_date_constant.md │ │ ├── request_referer.md │ │ ├── reversible_migration.md │ │ ├── safe_navigation.md │ │ ├── save_bang.md │ │ ├── scope_args.md │ │ ├── skips_model_validations.md │ │ ├── time_zone.md │ │ ├── uniq_before_pluck.md │ │ └── unknown_env.md │ ├── security │ │ ├── eval.md │ │ ├── json_load.md │ │ ├── marshal_load.md │ │ └── yaml_load.md │ └── style │ │ ├── accessor_method_name.md │ │ ├── alias.md │ │ ├── and_or.md │ │ ├── array_join.md │ │ ├── ascii_comments.md │ │ ├── attr.md │ │ ├── auto_resource_cleanup.md │ │ ├── bare_percent_literals.md │ │ ├── block_comments.md │ │ ├── block_delimiters.md │ │ ├── block_end_newline.md │ │ ├── braces_around_hash_parameters.md │ │ ├── case_equality.md │ │ ├── case_indentation.md │ │ ├── character_literal.md │ │ ├── class_and_module_children.md │ │ ├── class_check.md │ │ ├── class_methods.md │ │ ├── class_vars.md │ │ ├── closing_parenthesis_indentation.md │ │ ├── collection_methods.md │ │ ├── colon_method_call.md │ │ ├── colon_method_definition.md │ │ ├── command_literal.md │ │ ├── comment_annotation.md │ │ ├── commented_keyword.md │ │ ├── constant_name.md │ │ ├── copyright.md │ │ ├── date_time.md │ │ ├── def_with_parentheses.md │ │ ├── dir.md │ │ ├── documentation.md │ │ ├── documentation_method.md │ │ ├── double_negation.md │ │ ├── each_for_simple_loop.md │ │ ├── each_with_object.md │ │ ├── else_alignment.md │ │ ├── empty_block_parameter.md │ │ ├── empty_case_condition.md │ │ ├── empty_else.md │ │ ├── empty_lambda_parameter.md │ │ ├── empty_lines_around_block_body.md │ │ ├── empty_lines_around_class_body.md │ │ ├── empty_lines_around_method_body.md │ │ ├── empty_lines_around_module_body.md │ │ ├── empty_literal.md │ │ ├── empty_method.md │ │ ├── eval_with_location.md │ │ ├── even_odd.md │ │ ├── extend_self.md │ │ ├── extra_spacing.md │ │ ├── file_name.md │ │ ├── first_array_element_line_break.md │ │ ├── first_hash_element_line_break.md │ │ ├── first_method_argument_line_break.md │ │ ├── first_method_parameter_line_break.md │ │ ├── first_parameter_indentation.md │ │ ├── flip_flop.md │ │ ├── for.md │ │ ├── format_string.md │ │ ├── format_string_token.md │ │ ├── frozen_string_literal_comment.md │ │ ├── global_vars.md │ │ ├── guard_clause.md │ │ ├── hash_syntax.md │ │ ├── identical_conditional_branches.md │ │ ├── if_inside_else.md │ │ ├── if_unless_modifier.md │ │ ├── if_unless_modifier_of_if_unless.md │ │ ├── if_with_semicolon.md │ │ ├── implicit_runtime_error.md │ │ ├── indent_array.md │ │ ├── indent_assignment.md │ │ ├── indent_hash.md │ │ ├── indentation_consistency.md │ │ ├── indentation_width.md │ │ ├── infinite_loop.md │ │ ├── inline_comment.md │ │ ├── inverse_methods.md │ │ ├── lambda.md │ │ ├── lambda_call.md │ │ ├── leading_comment_space.md │ │ ├── line_end_concatenation.md │ │ ├── method_call_with_args_parentheses.md │ │ ├── method_call_without_args_parentheses.md │ │ ├── method_called_on_do_end_block.md │ │ ├── method_def_parentheses.md │ │ ├── method_missing.md │ │ ├── method_name.md │ │ ├── min_max.md │ │ ├── missing_else.md │ │ ├── mixin_grouping.md │ │ ├── mixin_usage.md │ │ ├── module_function.md │ │ ├── multiline_array_brace_layout.md │ │ ├── multiline_assignment_layout.md │ │ ├── multiline_block_chain.md │ │ ├── multiline_block_layout.md │ │ ├── multiline_hash_brace_layout.md │ │ ├── multiline_if_modifier.md │ │ ├── multiline_if_then.md │ │ ├── multiline_memoization.md │ │ ├── multiline_method_call_brace_layout.md │ │ ├── multiline_method_call_indentation.md │ │ ├── multiline_method_definition_brace_layout.md │ │ ├── multiline_operation_indentation.md │ │ ├── multiline_ternary_operator.md │ │ ├── multiple_comparison.md │ │ ├── mutable_constant.md │ │ ├── negated_if.md │ │ ├── nested_modifier.md │ │ ├── nested_parenthesized_calls.md │ │ ├── next.md │ │ ├── nil_comparison.md │ │ ├── non_nil_check.md │ │ ├── not.md │ │ ├── numeric_literal_prefix.md │ │ ├── numeric_literals.md │ │ ├── numeric_predicate.md │ │ ├── op_method.md │ │ ├── option_hash.md │ │ ├── optional_arguments.md │ │ ├── or_assignment.md │ │ ├── parallel_assignment.md │ │ ├── parentheses_around_condition.md │ │ ├── percent_literal_delimiters.md │ │ ├── percent_q_literals.md │ │ ├── perl_backrefs.md │ │ ├── predicate_name.md │ │ ├── preferred_hash_methods.md │ │ ├── proc.md │ │ ├── raise_args.md │ │ ├── random_with_offset.md │ │ ├── redundant_begin.md │ │ ├── redundant_conditional.md │ │ ├── redundant_exception.md │ │ ├── redundant_freeze.md │ │ ├── redundant_parentheses.md │ │ ├── redundant_return.md │ │ ├── redundant_self.md │ │ ├── regexp_literal.md │ │ ├── rescue_ensure_alignment.md │ │ ├── rescue_modifier.md │ │ ├── rescue_standard_error.md │ │ ├── return_nil.md │ │ ├── safe_navigation.md │ │ ├── self_assignment.md │ │ ├── semicolon.md │ │ ├── send.md │ │ ├── signal_exception.md │ │ ├── single_line_block_params.md │ │ ├── single_line_methods.md │ │ ├── space_after_colon.md │ │ ├── space_after_method_name.md │ │ ├── space_after_not.md │ │ ├── space_around_block_parameters.md │ │ ├── space_around_keyword.md │ │ ├── space_before_first_arg.md │ │ ├── space_in_lambda_literal.md │ │ ├── space_inside_array_percent_literal.md │ │ ├── space_inside_block_braces.md │ │ ├── space_inside_percent_literal_delimiters.md │ │ ├── space_inside_range_literal.md │ │ ├── space_inside_string_interpolation.md │ │ ├── stabby_lambda_parentheses.md │ │ ├── stderr_puts.md │ │ ├── string_hash_keys.md │ │ ├── string_literals.md │ │ ├── string_literals_in_interpolation.md │ │ ├── string_methods.md │ │ ├── struct_inheritance.md │ │ ├── symbol_array.md │ │ ├── symbol_literal.md │ │ ├── symbol_proc.md │ │ ├── ternary_parentheses.md │ │ ├── trailing_body_on_method_definition.md │ │ ├── trailing_comma_in_arguments.md │ │ ├── trailing_comma_in_literal.md │ │ ├── trailing_method_end_statement.md │ │ ├── trailing_underscore_variable.md │ │ ├── trivial_accessors.md │ │ ├── unless_else.md │ │ ├── unneeded_capital_w.md │ │ ├── unneeded_interpolation.md │ │ ├── variable_interpolation.md │ │ ├── variable_number.md │ │ ├── when_then.md │ │ ├── while_until_do.md │ │ ├── while_until_modifier.md │ │ ├── word_array.md │ │ ├── yoda_condition.md │ │ └── zero_length_predicate.md ├── cops.yml └── style_guides │ └── ruby.yml ├── lib ├── cc │ └── engine │ │ ├── category_parser.rb │ │ ├── config_upgrader.rb │ │ ├── content_resolver.rb │ │ ├── file_list_resolver.rb │ │ ├── fingerprint.rb │ │ ├── issue.rb │ │ ├── rubocop.rb │ │ └── source_file.rb ├── rubocop │ ├── config_patch.rb │ └── cop_patches.rb └── tasks │ └── docs.rake └── spec ├── cc └── engine │ ├── category_parser_spec.rb │ ├── config_upgrader_spec.rb │ ├── content_resolver_spec.rb │ ├── file_list_resolver_spec.rb │ ├── fingerprint_spec.rb │ ├── issue_spec.rb │ ├── rubocop_spec.rb │ └── source_file_spec.rb ├── rubocop ├── config_patch_spec.rb └── cop_patches_spec.rb ├── spec_helper.rb └── support ├── currently_undocumented_cops.txt ├── filesystem_helpers.rb ├── matchers.rb └── rubocop_runner.rb /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .bundle 2 | .git 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.3 2 | -------------------------------------------------------------------------------- /DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/DEVELOPERS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/Rakefile -------------------------------------------------------------------------------- /WERE_HIRING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/WERE_HIRING.md -------------------------------------------------------------------------------- /base_rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/base_rubocop.yml -------------------------------------------------------------------------------- /bin/codeclimate-rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/bin/codeclimate-rubocop -------------------------------------------------------------------------------- /bin/newver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/bin/newver -------------------------------------------------------------------------------- /config/contents/bundler/duplicated_gem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/bundler/duplicated_gem.md -------------------------------------------------------------------------------- /config/contents/bundler/insecure_protocol_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/bundler/insecure_protocol_source.md -------------------------------------------------------------------------------- /config/contents/bundler/ordered_gems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/bundler/ordered_gems.md -------------------------------------------------------------------------------- /config/contents/gemspec/duplicated_assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/gemspec/duplicated_assignment.md -------------------------------------------------------------------------------- /config/contents/gemspec/ordered_dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/gemspec/ordered_dependencies.md -------------------------------------------------------------------------------- /config/contents/gemspec/required_ruby_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/gemspec/required_ruby_version.md -------------------------------------------------------------------------------- /config/contents/layout/access_modifier_indentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/access_modifier_indentation.md -------------------------------------------------------------------------------- /config/contents/layout/align_array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/align_array.md -------------------------------------------------------------------------------- /config/contents/layout/align_hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/align_hash.md -------------------------------------------------------------------------------- /config/contents/layout/align_parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/align_parameters.md -------------------------------------------------------------------------------- /config/contents/layout/block_end_newline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/block_end_newline.md -------------------------------------------------------------------------------- /config/contents/layout/case_indentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/case_indentation.md -------------------------------------------------------------------------------- /config/contents/layout/class_structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/class_structure.md -------------------------------------------------------------------------------- /config/contents/layout/closing_parenthesis_indentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/closing_parenthesis_indentation.md -------------------------------------------------------------------------------- /config/contents/layout/comment_indentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/comment_indentation.md -------------------------------------------------------------------------------- /config/contents/layout/dot_position.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/dot_position.md -------------------------------------------------------------------------------- /config/contents/layout/else_alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/else_alignment.md -------------------------------------------------------------------------------- /config/contents/layout/empty_line_after_magic_comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/empty_line_after_magic_comment.md -------------------------------------------------------------------------------- /config/contents/layout/empty_line_between_defs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/empty_line_between_defs.md -------------------------------------------------------------------------------- /config/contents/layout/empty_lines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/empty_lines.md -------------------------------------------------------------------------------- /config/contents/layout/empty_lines_around_access_modifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/empty_lines_around_access_modifier.md -------------------------------------------------------------------------------- /config/contents/layout/empty_lines_around_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/empty_lines_around_arguments.md -------------------------------------------------------------------------------- /config/contents/layout/empty_lines_around_begin_body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/empty_lines_around_begin_body.md -------------------------------------------------------------------------------- /config/contents/layout/empty_lines_around_block_body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/empty_lines_around_block_body.md -------------------------------------------------------------------------------- /config/contents/layout/empty_lines_around_class_body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/empty_lines_around_class_body.md -------------------------------------------------------------------------------- /config/contents/layout/empty_lines_around_exception_handling_keywords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/empty_lines_around_exception_handling_keywords.md -------------------------------------------------------------------------------- /config/contents/layout/empty_lines_around_method_body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/empty_lines_around_method_body.md -------------------------------------------------------------------------------- /config/contents/layout/empty_lines_around_module_body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/empty_lines_around_module_body.md -------------------------------------------------------------------------------- /config/contents/layout/extra_spacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/extra_spacing.md -------------------------------------------------------------------------------- /config/contents/layout/first_array_element_line_break.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/first_array_element_line_break.md -------------------------------------------------------------------------------- /config/contents/layout/first_hash_element_line_break.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/first_hash_element_line_break.md -------------------------------------------------------------------------------- /config/contents/layout/first_method_argument_line_break.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/first_method_argument_line_break.md -------------------------------------------------------------------------------- /config/contents/layout/first_method_parameter_line_break.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/first_method_parameter_line_break.md -------------------------------------------------------------------------------- /config/contents/layout/first_parameter_indentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/first_parameter_indentation.md -------------------------------------------------------------------------------- /config/contents/layout/indent_array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/indent_array.md -------------------------------------------------------------------------------- /config/contents/layout/indent_assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/indent_assignment.md -------------------------------------------------------------------------------- /config/contents/layout/indent_hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/indent_hash.md -------------------------------------------------------------------------------- /config/contents/layout/indent_heredoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/indent_heredoc.md -------------------------------------------------------------------------------- /config/contents/layout/indentation_consistency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/indentation_consistency.md -------------------------------------------------------------------------------- /config/contents/layout/indentation_width.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/indentation_width.md -------------------------------------------------------------------------------- /config/contents/layout/leading_comment_space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/leading_comment_space.md -------------------------------------------------------------------------------- /config/contents/layout/multiline_array_brace_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/multiline_array_brace_layout.md -------------------------------------------------------------------------------- /config/contents/layout/multiline_assignment_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/multiline_assignment_layout.md -------------------------------------------------------------------------------- /config/contents/layout/multiline_block_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/multiline_block_layout.md -------------------------------------------------------------------------------- /config/contents/layout/multiline_hash_brace_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/multiline_hash_brace_layout.md -------------------------------------------------------------------------------- /config/contents/layout/multiline_method_call_brace_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/multiline_method_call_brace_layout.md -------------------------------------------------------------------------------- /config/contents/layout/multiline_method_call_indentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/multiline_method_call_indentation.md -------------------------------------------------------------------------------- /config/contents/layout/multiline_method_definition_brace_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/multiline_method_definition_brace_layout.md -------------------------------------------------------------------------------- /config/contents/layout/multiline_operation_indentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/multiline_operation_indentation.md -------------------------------------------------------------------------------- /config/contents/layout/rescue_ensure_alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/rescue_ensure_alignment.md -------------------------------------------------------------------------------- /config/contents/layout/space_after_colon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_after_colon.md -------------------------------------------------------------------------------- /config/contents/layout/space_after_comma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_after_comma.md -------------------------------------------------------------------------------- /config/contents/layout/space_after_method_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_after_method_name.md -------------------------------------------------------------------------------- /config/contents/layout/space_after_not.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_after_not.md -------------------------------------------------------------------------------- /config/contents/layout/space_after_semicolon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_after_semicolon.md -------------------------------------------------------------------------------- /config/contents/layout/space_around_block_parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_around_block_parameters.md -------------------------------------------------------------------------------- /config/contents/layout/space_around_equals_in_parameter_default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_around_equals_in_parameter_default.md -------------------------------------------------------------------------------- /config/contents/layout/space_around_keyword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_around_keyword.md -------------------------------------------------------------------------------- /config/contents/layout/space_around_operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_around_operators.md -------------------------------------------------------------------------------- /config/contents/layout/space_before_block_braces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_before_block_braces.md -------------------------------------------------------------------------------- /config/contents/layout/space_before_comma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_before_comma.md -------------------------------------------------------------------------------- /config/contents/layout/space_before_comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_before_comment.md -------------------------------------------------------------------------------- /config/contents/layout/space_before_first_arg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_before_first_arg.md -------------------------------------------------------------------------------- /config/contents/layout/space_before_semicolon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_before_semicolon.md -------------------------------------------------------------------------------- /config/contents/layout/space_in_lambda_literal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_in_lambda_literal.md -------------------------------------------------------------------------------- /config/contents/layout/space_inside_array_literal_brackets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_inside_array_literal_brackets.md -------------------------------------------------------------------------------- /config/contents/layout/space_inside_array_percent_literal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_inside_array_percent_literal.md -------------------------------------------------------------------------------- /config/contents/layout/space_inside_block_braces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_inside_block_braces.md -------------------------------------------------------------------------------- /config/contents/layout/space_inside_hash_literal_braces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_inside_hash_literal_braces.md -------------------------------------------------------------------------------- /config/contents/layout/space_inside_parens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_inside_parens.md -------------------------------------------------------------------------------- /config/contents/layout/space_inside_percent_literal_delimiters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_inside_percent_literal_delimiters.md -------------------------------------------------------------------------------- /config/contents/layout/space_inside_range_literal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_inside_range_literal.md -------------------------------------------------------------------------------- /config/contents/layout/space_inside_reference_brackets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_inside_reference_brackets.md -------------------------------------------------------------------------------- /config/contents/layout/space_inside_string_interpolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/layout/space_inside_string_interpolation.md -------------------------------------------------------------------------------- /config/contents/lint/ambiguous_block_association.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/ambiguous_block_association.md -------------------------------------------------------------------------------- /config/contents/lint/ambiguous_operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/ambiguous_operator.md -------------------------------------------------------------------------------- /config/contents/lint/ambiguous_regexp_literal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/ambiguous_regexp_literal.md -------------------------------------------------------------------------------- /config/contents/lint/assignment_in_condition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/assignment_in_condition.md -------------------------------------------------------------------------------- /config/contents/lint/block_alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/block_alignment.md -------------------------------------------------------------------------------- /config/contents/lint/boolean_symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/boolean_symbol.md -------------------------------------------------------------------------------- /config/contents/lint/circular_argument_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/circular_argument_reference.md -------------------------------------------------------------------------------- /config/contents/lint/condition_position.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/condition_position.md -------------------------------------------------------------------------------- /config/contents/lint/debugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/debugger.md -------------------------------------------------------------------------------- /config/contents/lint/def_end_alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/def_end_alignment.md -------------------------------------------------------------------------------- /config/contents/lint/deprecated_class_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/deprecated_class_methods.md -------------------------------------------------------------------------------- /config/contents/lint/duplicate_case_condition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/duplicate_case_condition.md -------------------------------------------------------------------------------- /config/contents/lint/duplicate_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/duplicate_methods.md -------------------------------------------------------------------------------- /config/contents/lint/duplicated_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/duplicated_key.md -------------------------------------------------------------------------------- /config/contents/lint/each_with_object_argument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/each_with_object_argument.md -------------------------------------------------------------------------------- /config/contents/lint/else_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/else_layout.md -------------------------------------------------------------------------------- /config/contents/lint/empty_ensure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/empty_ensure.md -------------------------------------------------------------------------------- /config/contents/lint/empty_expression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/empty_expression.md -------------------------------------------------------------------------------- /config/contents/lint/empty_interpolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/empty_interpolation.md -------------------------------------------------------------------------------- /config/contents/lint/empty_when.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/empty_when.md -------------------------------------------------------------------------------- /config/contents/lint/end_alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/end_alignment.md -------------------------------------------------------------------------------- /config/contents/lint/end_in_method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/end_in_method.md -------------------------------------------------------------------------------- /config/contents/lint/ensure_return.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/ensure_return.md -------------------------------------------------------------------------------- /config/contents/lint/float_out_of_range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/float_out_of_range.md -------------------------------------------------------------------------------- /config/contents/lint/format_parameter_mismatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/format_parameter_mismatch.md -------------------------------------------------------------------------------- /config/contents/lint/handle_exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/handle_exceptions.md -------------------------------------------------------------------------------- /config/contents/lint/implicit_string_concatenation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/implicit_string_concatenation.md -------------------------------------------------------------------------------- /config/contents/lint/ineffective_access_modifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/ineffective_access_modifier.md -------------------------------------------------------------------------------- /config/contents/lint/inherit_exception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/inherit_exception.md -------------------------------------------------------------------------------- /config/contents/lint/interpolation_check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/interpolation_check.md -------------------------------------------------------------------------------- /config/contents/lint/invalid_character_literal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/invalid_character_literal.md -------------------------------------------------------------------------------- /config/contents/lint/literal_as_condition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/literal_as_condition.md -------------------------------------------------------------------------------- /config/contents/lint/literal_in_condition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/literal_in_condition.md -------------------------------------------------------------------------------- /config/contents/lint/literal_in_interpolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/literal_in_interpolation.md -------------------------------------------------------------------------------- /config/contents/lint/loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/loop.md -------------------------------------------------------------------------------- /config/contents/lint/multiple_compare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/multiple_compare.md -------------------------------------------------------------------------------- /config/contents/lint/nested_method_definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/nested_method_definition.md -------------------------------------------------------------------------------- /config/contents/lint/nested_percent_literal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/nested_percent_literal.md -------------------------------------------------------------------------------- /config/contents/lint/next_without_accumulator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/next_without_accumulator.md -------------------------------------------------------------------------------- /config/contents/lint/non_local_exit_from_iterator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/non_local_exit_from_iterator.md -------------------------------------------------------------------------------- /config/contents/lint/parentheses_as_grouped_expression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/parentheses_as_grouped_expression.md -------------------------------------------------------------------------------- /config/contents/lint/percent_string_array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/percent_string_array.md -------------------------------------------------------------------------------- /config/contents/lint/percent_symbol_array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/percent_symbol_array.md -------------------------------------------------------------------------------- /config/contents/lint/rand_one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/rand_one.md -------------------------------------------------------------------------------- /config/contents/lint/redundant_with_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/redundant_with_index.md -------------------------------------------------------------------------------- /config/contents/lint/redundant_with_object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/redundant_with_object.md -------------------------------------------------------------------------------- /config/contents/lint/regexp_as_condition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/regexp_as_condition.md -------------------------------------------------------------------------------- /config/contents/lint/require_parentheses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/require_parentheses.md -------------------------------------------------------------------------------- /config/contents/lint/rescue_exception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/rescue_exception.md -------------------------------------------------------------------------------- /config/contents/lint/rescue_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/rescue_type.md -------------------------------------------------------------------------------- /config/contents/lint/rescue_without_error_class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/rescue_without_error_class.md -------------------------------------------------------------------------------- /config/contents/lint/return_in_void_context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/return_in_void_context.md -------------------------------------------------------------------------------- /config/contents/lint/safe_navigation_chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/safe_navigation_chain.md -------------------------------------------------------------------------------- /config/contents/lint/shadowed_argument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/shadowed_argument.md -------------------------------------------------------------------------------- /config/contents/lint/shadowed_exception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/shadowed_exception.md -------------------------------------------------------------------------------- /config/contents/lint/shadowing_outer_local_variable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/shadowing_outer_local_variable.md -------------------------------------------------------------------------------- /config/contents/lint/string_conversion_in_interpolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/string_conversion_in_interpolation.md -------------------------------------------------------------------------------- /config/contents/lint/underscore_prefixed_variable_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/underscore_prefixed_variable_name.md -------------------------------------------------------------------------------- /config/contents/lint/unified_integer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/unified_integer.md -------------------------------------------------------------------------------- /config/contents/lint/unneeded_disable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/unneeded_disable.md -------------------------------------------------------------------------------- /config/contents/lint/unneeded_require_statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/unneeded_require_statement.md -------------------------------------------------------------------------------- /config/contents/lint/unneeded_splat_expansion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/unneeded_splat_expansion.md -------------------------------------------------------------------------------- /config/contents/lint/unreachable_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/unreachable_code.md -------------------------------------------------------------------------------- /config/contents/lint/unused_block_argument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/unused_block_argument.md -------------------------------------------------------------------------------- /config/contents/lint/unused_method_argument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/unused_method_argument.md -------------------------------------------------------------------------------- /config/contents/lint/uri_escape_unescape.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/uri_escape_unescape.md -------------------------------------------------------------------------------- /config/contents/lint/uri_regexp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/uri_regexp.md -------------------------------------------------------------------------------- /config/contents/lint/useless_access_modifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/useless_access_modifier.md -------------------------------------------------------------------------------- /config/contents/lint/useless_assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/useless_assignment.md -------------------------------------------------------------------------------- /config/contents/lint/useless_comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/useless_comparison.md -------------------------------------------------------------------------------- /config/contents/lint/useless_else_without_rescue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/useless_else_without_rescue.md -------------------------------------------------------------------------------- /config/contents/lint/useless_setter_call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/useless_setter_call.md -------------------------------------------------------------------------------- /config/contents/lint/void.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/lint/void.md -------------------------------------------------------------------------------- /config/contents/metrics/abc_size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/metrics/abc_size.md -------------------------------------------------------------------------------- /config/contents/metrics/block_length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/metrics/block_length.md -------------------------------------------------------------------------------- /config/contents/metrics/block_nesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/metrics/block_nesting.md -------------------------------------------------------------------------------- /config/contents/metrics/class_length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/metrics/class_length.md -------------------------------------------------------------------------------- /config/contents/metrics/cyclomatic_complexity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/metrics/cyclomatic_complexity.md -------------------------------------------------------------------------------- /config/contents/metrics/method_length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/metrics/method_length.md -------------------------------------------------------------------------------- /config/contents/metrics/module_length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/metrics/module_length.md -------------------------------------------------------------------------------- /config/contents/metrics/parameter_lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/metrics/parameter_lists.md -------------------------------------------------------------------------------- /config/contents/metrics/perceived_complexity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/metrics/perceived_complexity.md -------------------------------------------------------------------------------- /config/contents/naming/accessor_method_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/naming/accessor_method_name.md -------------------------------------------------------------------------------- /config/contents/naming/ascii_identifiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/naming/ascii_identifiers.md -------------------------------------------------------------------------------- /config/contents/naming/binary_operator_parameter_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/naming/binary_operator_parameter_name.md -------------------------------------------------------------------------------- /config/contents/naming/class_and_module_camel_case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/naming/class_and_module_camel_case.md -------------------------------------------------------------------------------- /config/contents/naming/constant_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/naming/constant_name.md -------------------------------------------------------------------------------- /config/contents/naming/file_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/naming/file_name.md -------------------------------------------------------------------------------- /config/contents/naming/heredoc_delimiter_case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/naming/heredoc_delimiter_case.md -------------------------------------------------------------------------------- /config/contents/naming/heredoc_delimiter_naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/naming/heredoc_delimiter_naming.md -------------------------------------------------------------------------------- /config/contents/naming/method_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/naming/method_name.md -------------------------------------------------------------------------------- /config/contents/naming/predicate_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/naming/predicate_name.md -------------------------------------------------------------------------------- /config/contents/naming/variable_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/naming/variable_name.md -------------------------------------------------------------------------------- /config/contents/naming/variable_number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/naming/variable_number.md -------------------------------------------------------------------------------- /config/contents/performance/caller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/caller.md -------------------------------------------------------------------------------- /config/contents/performance/case_when_splat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/case_when_splat.md -------------------------------------------------------------------------------- /config/contents/performance/casecmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/casecmp.md -------------------------------------------------------------------------------- /config/contents/performance/compare_with_block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/compare_with_block.md -------------------------------------------------------------------------------- /config/contents/performance/count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/count.md -------------------------------------------------------------------------------- /config/contents/performance/detect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/detect.md -------------------------------------------------------------------------------- /config/contents/performance/double_start_end_with.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/double_start_end_with.md -------------------------------------------------------------------------------- /config/contents/performance/end_with.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/end_with.md -------------------------------------------------------------------------------- /config/contents/performance/flat_map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/flat_map.md -------------------------------------------------------------------------------- /config/contents/performance/hash_each.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/hash_each.md -------------------------------------------------------------------------------- /config/contents/performance/hash_each_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/hash_each_methods.md -------------------------------------------------------------------------------- /config/contents/performance/lstrip_rstrip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/lstrip_rstrip.md -------------------------------------------------------------------------------- /config/contents/performance/range_include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/range_include.md -------------------------------------------------------------------------------- /config/contents/performance/redundant_block_call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/redundant_block_call.md -------------------------------------------------------------------------------- /config/contents/performance/redundant_match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/redundant_match.md -------------------------------------------------------------------------------- /config/contents/performance/redundant_merge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/redundant_merge.md -------------------------------------------------------------------------------- /config/contents/performance/redundant_sort_by.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/redundant_sort_by.md -------------------------------------------------------------------------------- /config/contents/performance/regexp_match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/regexp_match.md -------------------------------------------------------------------------------- /config/contents/performance/reverse_each.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/reverse_each.md -------------------------------------------------------------------------------- /config/contents/performance/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/sample.md -------------------------------------------------------------------------------- /config/contents/performance/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/size.md -------------------------------------------------------------------------------- /config/contents/performance/sort_with_block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/sort_with_block.md -------------------------------------------------------------------------------- /config/contents/performance/start_with.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/start_with.md -------------------------------------------------------------------------------- /config/contents/performance/string_replacement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/string_replacement.md -------------------------------------------------------------------------------- /config/contents/performance/times_map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/times_map.md -------------------------------------------------------------------------------- /config/contents/performance/unfreeze_string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/unfreeze_string.md -------------------------------------------------------------------------------- /config/contents/performance/uri_default_parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/performance/uri_default_parser.md -------------------------------------------------------------------------------- /config/contents/rails/action_filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/action_filter.md -------------------------------------------------------------------------------- /config/contents/rails/active_support_aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/active_support_aliases.md -------------------------------------------------------------------------------- /config/contents/rails/application_job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/application_job.md -------------------------------------------------------------------------------- /config/contents/rails/application_record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/application_record.md -------------------------------------------------------------------------------- /config/contents/rails/blank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/blank.md -------------------------------------------------------------------------------- /config/contents/rails/create_table_with_timestamps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/create_table_with_timestamps.md -------------------------------------------------------------------------------- /config/contents/rails/date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/date.md -------------------------------------------------------------------------------- /config/contents/rails/delegate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/delegate.md -------------------------------------------------------------------------------- /config/contents/rails/delegate_allow_blank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/delegate_allow_blank.md -------------------------------------------------------------------------------- /config/contents/rails/dynamic_find_by.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/dynamic_find_by.md -------------------------------------------------------------------------------- /config/contents/rails/enum_uniqueness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/enum_uniqueness.md -------------------------------------------------------------------------------- /config/contents/rails/environment_comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/environment_comparison.md -------------------------------------------------------------------------------- /config/contents/rails/exit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/exit.md -------------------------------------------------------------------------------- /config/contents/rails/file_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/file_path.md -------------------------------------------------------------------------------- /config/contents/rails/find_by.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/find_by.md -------------------------------------------------------------------------------- /config/contents/rails/find_each.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/find_each.md -------------------------------------------------------------------------------- /config/contents/rails/has_and_belongs_to_many.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/has_and_belongs_to_many.md -------------------------------------------------------------------------------- /config/contents/rails/has_many_or_has_one_dependent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/has_many_or_has_one_dependent.md -------------------------------------------------------------------------------- /config/contents/rails/http_positional_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/http_positional_arguments.md -------------------------------------------------------------------------------- /config/contents/rails/inverse_of.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/inverse_of.md -------------------------------------------------------------------------------- /config/contents/rails/lexically_scoped_action_filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/lexically_scoped_action_filter.md -------------------------------------------------------------------------------- /config/contents/rails/not_null_column.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/not_null_column.md -------------------------------------------------------------------------------- /config/contents/rails/output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/output.md -------------------------------------------------------------------------------- /config/contents/rails/output_safety.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/output_safety.md -------------------------------------------------------------------------------- /config/contents/rails/pluralization_grammar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/pluralization_grammar.md -------------------------------------------------------------------------------- /config/contents/rails/presence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/presence.md -------------------------------------------------------------------------------- /config/contents/rails/present.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/present.md -------------------------------------------------------------------------------- /config/contents/rails/read_write_attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/read_write_attribute.md -------------------------------------------------------------------------------- /config/contents/rails/redundant_receiver_in_with_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/redundant_receiver_in_with_options.md -------------------------------------------------------------------------------- /config/contents/rails/relative_date_constant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/relative_date_constant.md -------------------------------------------------------------------------------- /config/contents/rails/request_referer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/request_referer.md -------------------------------------------------------------------------------- /config/contents/rails/reversible_migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/reversible_migration.md -------------------------------------------------------------------------------- /config/contents/rails/safe_navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/safe_navigation.md -------------------------------------------------------------------------------- /config/contents/rails/save_bang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/save_bang.md -------------------------------------------------------------------------------- /config/contents/rails/scope_args.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/scope_args.md -------------------------------------------------------------------------------- /config/contents/rails/skips_model_validations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/skips_model_validations.md -------------------------------------------------------------------------------- /config/contents/rails/time_zone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/time_zone.md -------------------------------------------------------------------------------- /config/contents/rails/uniq_before_pluck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/uniq_before_pluck.md -------------------------------------------------------------------------------- /config/contents/rails/unknown_env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/rails/unknown_env.md -------------------------------------------------------------------------------- /config/contents/security/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/security/eval.md -------------------------------------------------------------------------------- /config/contents/security/json_load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/security/json_load.md -------------------------------------------------------------------------------- /config/contents/security/marshal_load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/security/marshal_load.md -------------------------------------------------------------------------------- /config/contents/security/yaml_load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/security/yaml_load.md -------------------------------------------------------------------------------- /config/contents/style/accessor_method_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/accessor_method_name.md -------------------------------------------------------------------------------- /config/contents/style/alias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/alias.md -------------------------------------------------------------------------------- /config/contents/style/and_or.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/and_or.md -------------------------------------------------------------------------------- /config/contents/style/array_join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/array_join.md -------------------------------------------------------------------------------- /config/contents/style/ascii_comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/ascii_comments.md -------------------------------------------------------------------------------- /config/contents/style/attr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/attr.md -------------------------------------------------------------------------------- /config/contents/style/auto_resource_cleanup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/auto_resource_cleanup.md -------------------------------------------------------------------------------- /config/contents/style/bare_percent_literals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/bare_percent_literals.md -------------------------------------------------------------------------------- /config/contents/style/block_comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/block_comments.md -------------------------------------------------------------------------------- /config/contents/style/block_delimiters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/block_delimiters.md -------------------------------------------------------------------------------- /config/contents/style/block_end_newline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/block_end_newline.md -------------------------------------------------------------------------------- /config/contents/style/braces_around_hash_parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/braces_around_hash_parameters.md -------------------------------------------------------------------------------- /config/contents/style/case_equality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/case_equality.md -------------------------------------------------------------------------------- /config/contents/style/case_indentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/case_indentation.md -------------------------------------------------------------------------------- /config/contents/style/character_literal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/character_literal.md -------------------------------------------------------------------------------- /config/contents/style/class_and_module_children.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/class_and_module_children.md -------------------------------------------------------------------------------- /config/contents/style/class_check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/class_check.md -------------------------------------------------------------------------------- /config/contents/style/class_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/class_methods.md -------------------------------------------------------------------------------- /config/contents/style/class_vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/class_vars.md -------------------------------------------------------------------------------- /config/contents/style/closing_parenthesis_indentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/closing_parenthesis_indentation.md -------------------------------------------------------------------------------- /config/contents/style/collection_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/collection_methods.md -------------------------------------------------------------------------------- /config/contents/style/colon_method_call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/colon_method_call.md -------------------------------------------------------------------------------- /config/contents/style/colon_method_definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/colon_method_definition.md -------------------------------------------------------------------------------- /config/contents/style/command_literal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/command_literal.md -------------------------------------------------------------------------------- /config/contents/style/comment_annotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/comment_annotation.md -------------------------------------------------------------------------------- /config/contents/style/commented_keyword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/commented_keyword.md -------------------------------------------------------------------------------- /config/contents/style/constant_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/constant_name.md -------------------------------------------------------------------------------- /config/contents/style/copyright.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/copyright.md -------------------------------------------------------------------------------- /config/contents/style/date_time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/date_time.md -------------------------------------------------------------------------------- /config/contents/style/def_with_parentheses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/def_with_parentheses.md -------------------------------------------------------------------------------- /config/contents/style/dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/dir.md -------------------------------------------------------------------------------- /config/contents/style/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/documentation.md -------------------------------------------------------------------------------- /config/contents/style/documentation_method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/documentation_method.md -------------------------------------------------------------------------------- /config/contents/style/double_negation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/double_negation.md -------------------------------------------------------------------------------- /config/contents/style/each_for_simple_loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/each_for_simple_loop.md -------------------------------------------------------------------------------- /config/contents/style/each_with_object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/each_with_object.md -------------------------------------------------------------------------------- /config/contents/style/else_alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/else_alignment.md -------------------------------------------------------------------------------- /config/contents/style/empty_block_parameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/empty_block_parameter.md -------------------------------------------------------------------------------- /config/contents/style/empty_case_condition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/empty_case_condition.md -------------------------------------------------------------------------------- /config/contents/style/empty_else.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/empty_else.md -------------------------------------------------------------------------------- /config/contents/style/empty_lambda_parameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/empty_lambda_parameter.md -------------------------------------------------------------------------------- /config/contents/style/empty_lines_around_block_body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/empty_lines_around_block_body.md -------------------------------------------------------------------------------- /config/contents/style/empty_lines_around_class_body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/empty_lines_around_class_body.md -------------------------------------------------------------------------------- /config/contents/style/empty_lines_around_method_body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/empty_lines_around_method_body.md -------------------------------------------------------------------------------- /config/contents/style/empty_lines_around_module_body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/empty_lines_around_module_body.md -------------------------------------------------------------------------------- /config/contents/style/empty_literal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/empty_literal.md -------------------------------------------------------------------------------- /config/contents/style/empty_method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/empty_method.md -------------------------------------------------------------------------------- /config/contents/style/eval_with_location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/eval_with_location.md -------------------------------------------------------------------------------- /config/contents/style/even_odd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/even_odd.md -------------------------------------------------------------------------------- /config/contents/style/extend_self.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/extend_self.md -------------------------------------------------------------------------------- /config/contents/style/extra_spacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/extra_spacing.md -------------------------------------------------------------------------------- /config/contents/style/file_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/file_name.md -------------------------------------------------------------------------------- /config/contents/style/first_array_element_line_break.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/first_array_element_line_break.md -------------------------------------------------------------------------------- /config/contents/style/first_hash_element_line_break.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/first_hash_element_line_break.md -------------------------------------------------------------------------------- /config/contents/style/first_method_argument_line_break.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/first_method_argument_line_break.md -------------------------------------------------------------------------------- /config/contents/style/first_method_parameter_line_break.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/first_method_parameter_line_break.md -------------------------------------------------------------------------------- /config/contents/style/first_parameter_indentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/first_parameter_indentation.md -------------------------------------------------------------------------------- /config/contents/style/flip_flop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/flip_flop.md -------------------------------------------------------------------------------- /config/contents/style/for.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/for.md -------------------------------------------------------------------------------- /config/contents/style/format_string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/format_string.md -------------------------------------------------------------------------------- /config/contents/style/format_string_token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/format_string_token.md -------------------------------------------------------------------------------- /config/contents/style/frozen_string_literal_comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/frozen_string_literal_comment.md -------------------------------------------------------------------------------- /config/contents/style/global_vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/global_vars.md -------------------------------------------------------------------------------- /config/contents/style/guard_clause.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/guard_clause.md -------------------------------------------------------------------------------- /config/contents/style/hash_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/hash_syntax.md -------------------------------------------------------------------------------- /config/contents/style/identical_conditional_branches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/identical_conditional_branches.md -------------------------------------------------------------------------------- /config/contents/style/if_inside_else.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/if_inside_else.md -------------------------------------------------------------------------------- /config/contents/style/if_unless_modifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/if_unless_modifier.md -------------------------------------------------------------------------------- /config/contents/style/if_unless_modifier_of_if_unless.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/if_unless_modifier_of_if_unless.md -------------------------------------------------------------------------------- /config/contents/style/if_with_semicolon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/if_with_semicolon.md -------------------------------------------------------------------------------- /config/contents/style/implicit_runtime_error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/implicit_runtime_error.md -------------------------------------------------------------------------------- /config/contents/style/indent_array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/indent_array.md -------------------------------------------------------------------------------- /config/contents/style/indent_assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/indent_assignment.md -------------------------------------------------------------------------------- /config/contents/style/indent_hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/indent_hash.md -------------------------------------------------------------------------------- /config/contents/style/indentation_consistency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/indentation_consistency.md -------------------------------------------------------------------------------- /config/contents/style/indentation_width.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/indentation_width.md -------------------------------------------------------------------------------- /config/contents/style/infinite_loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/infinite_loop.md -------------------------------------------------------------------------------- /config/contents/style/inline_comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/inline_comment.md -------------------------------------------------------------------------------- /config/contents/style/inverse_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/inverse_methods.md -------------------------------------------------------------------------------- /config/contents/style/lambda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/lambda.md -------------------------------------------------------------------------------- /config/contents/style/lambda_call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/lambda_call.md -------------------------------------------------------------------------------- /config/contents/style/leading_comment_space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/leading_comment_space.md -------------------------------------------------------------------------------- /config/contents/style/line_end_concatenation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/line_end_concatenation.md -------------------------------------------------------------------------------- /config/contents/style/method_call_with_args_parentheses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/method_call_with_args_parentheses.md -------------------------------------------------------------------------------- /config/contents/style/method_call_without_args_parentheses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/method_call_without_args_parentheses.md -------------------------------------------------------------------------------- /config/contents/style/method_called_on_do_end_block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/method_called_on_do_end_block.md -------------------------------------------------------------------------------- /config/contents/style/method_def_parentheses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/method_def_parentheses.md -------------------------------------------------------------------------------- /config/contents/style/method_missing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/method_missing.md -------------------------------------------------------------------------------- /config/contents/style/method_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/method_name.md -------------------------------------------------------------------------------- /config/contents/style/min_max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/min_max.md -------------------------------------------------------------------------------- /config/contents/style/missing_else.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/missing_else.md -------------------------------------------------------------------------------- /config/contents/style/mixin_grouping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/mixin_grouping.md -------------------------------------------------------------------------------- /config/contents/style/mixin_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/mixin_usage.md -------------------------------------------------------------------------------- /config/contents/style/module_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/module_function.md -------------------------------------------------------------------------------- /config/contents/style/multiline_array_brace_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/multiline_array_brace_layout.md -------------------------------------------------------------------------------- /config/contents/style/multiline_assignment_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/multiline_assignment_layout.md -------------------------------------------------------------------------------- /config/contents/style/multiline_block_chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/multiline_block_chain.md -------------------------------------------------------------------------------- /config/contents/style/multiline_block_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/multiline_block_layout.md -------------------------------------------------------------------------------- /config/contents/style/multiline_hash_brace_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/multiline_hash_brace_layout.md -------------------------------------------------------------------------------- /config/contents/style/multiline_if_modifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/multiline_if_modifier.md -------------------------------------------------------------------------------- /config/contents/style/multiline_if_then.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/multiline_if_then.md -------------------------------------------------------------------------------- /config/contents/style/multiline_memoization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/multiline_memoization.md -------------------------------------------------------------------------------- /config/contents/style/multiline_method_call_brace_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/multiline_method_call_brace_layout.md -------------------------------------------------------------------------------- /config/contents/style/multiline_method_call_indentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/multiline_method_call_indentation.md -------------------------------------------------------------------------------- /config/contents/style/multiline_method_definition_brace_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/multiline_method_definition_brace_layout.md -------------------------------------------------------------------------------- /config/contents/style/multiline_operation_indentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/multiline_operation_indentation.md -------------------------------------------------------------------------------- /config/contents/style/multiline_ternary_operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/multiline_ternary_operator.md -------------------------------------------------------------------------------- /config/contents/style/multiple_comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/multiple_comparison.md -------------------------------------------------------------------------------- /config/contents/style/mutable_constant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/mutable_constant.md -------------------------------------------------------------------------------- /config/contents/style/negated_if.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/negated_if.md -------------------------------------------------------------------------------- /config/contents/style/nested_modifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/nested_modifier.md -------------------------------------------------------------------------------- /config/contents/style/nested_parenthesized_calls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/nested_parenthesized_calls.md -------------------------------------------------------------------------------- /config/contents/style/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/next.md -------------------------------------------------------------------------------- /config/contents/style/nil_comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/nil_comparison.md -------------------------------------------------------------------------------- /config/contents/style/non_nil_check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/non_nil_check.md -------------------------------------------------------------------------------- /config/contents/style/not.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/not.md -------------------------------------------------------------------------------- /config/contents/style/numeric_literal_prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/numeric_literal_prefix.md -------------------------------------------------------------------------------- /config/contents/style/numeric_literals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/numeric_literals.md -------------------------------------------------------------------------------- /config/contents/style/numeric_predicate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/numeric_predicate.md -------------------------------------------------------------------------------- /config/contents/style/op_method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/op_method.md -------------------------------------------------------------------------------- /config/contents/style/option_hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/option_hash.md -------------------------------------------------------------------------------- /config/contents/style/optional_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/optional_arguments.md -------------------------------------------------------------------------------- /config/contents/style/or_assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/or_assignment.md -------------------------------------------------------------------------------- /config/contents/style/parallel_assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/parallel_assignment.md -------------------------------------------------------------------------------- /config/contents/style/parentheses_around_condition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/parentheses_around_condition.md -------------------------------------------------------------------------------- /config/contents/style/percent_literal_delimiters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/percent_literal_delimiters.md -------------------------------------------------------------------------------- /config/contents/style/percent_q_literals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/percent_q_literals.md -------------------------------------------------------------------------------- /config/contents/style/perl_backrefs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/perl_backrefs.md -------------------------------------------------------------------------------- /config/contents/style/predicate_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/predicate_name.md -------------------------------------------------------------------------------- /config/contents/style/preferred_hash_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/preferred_hash_methods.md -------------------------------------------------------------------------------- /config/contents/style/proc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/proc.md -------------------------------------------------------------------------------- /config/contents/style/raise_args.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/raise_args.md -------------------------------------------------------------------------------- /config/contents/style/random_with_offset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/random_with_offset.md -------------------------------------------------------------------------------- /config/contents/style/redundant_begin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/redundant_begin.md -------------------------------------------------------------------------------- /config/contents/style/redundant_conditional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/redundant_conditional.md -------------------------------------------------------------------------------- /config/contents/style/redundant_exception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/redundant_exception.md -------------------------------------------------------------------------------- /config/contents/style/redundant_freeze.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/redundant_freeze.md -------------------------------------------------------------------------------- /config/contents/style/redundant_parentheses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/redundant_parentheses.md -------------------------------------------------------------------------------- /config/contents/style/redundant_return.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/redundant_return.md -------------------------------------------------------------------------------- /config/contents/style/redundant_self.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/redundant_self.md -------------------------------------------------------------------------------- /config/contents/style/regexp_literal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/regexp_literal.md -------------------------------------------------------------------------------- /config/contents/style/rescue_ensure_alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/rescue_ensure_alignment.md -------------------------------------------------------------------------------- /config/contents/style/rescue_modifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/rescue_modifier.md -------------------------------------------------------------------------------- /config/contents/style/rescue_standard_error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/rescue_standard_error.md -------------------------------------------------------------------------------- /config/contents/style/return_nil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/return_nil.md -------------------------------------------------------------------------------- /config/contents/style/safe_navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/safe_navigation.md -------------------------------------------------------------------------------- /config/contents/style/self_assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/self_assignment.md -------------------------------------------------------------------------------- /config/contents/style/semicolon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/semicolon.md -------------------------------------------------------------------------------- /config/contents/style/send.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/send.md -------------------------------------------------------------------------------- /config/contents/style/signal_exception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/signal_exception.md -------------------------------------------------------------------------------- /config/contents/style/single_line_block_params.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/single_line_block_params.md -------------------------------------------------------------------------------- /config/contents/style/single_line_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/single_line_methods.md -------------------------------------------------------------------------------- /config/contents/style/space_after_colon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/space_after_colon.md -------------------------------------------------------------------------------- /config/contents/style/space_after_method_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/space_after_method_name.md -------------------------------------------------------------------------------- /config/contents/style/space_after_not.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/space_after_not.md -------------------------------------------------------------------------------- /config/contents/style/space_around_block_parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/space_around_block_parameters.md -------------------------------------------------------------------------------- /config/contents/style/space_around_keyword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/space_around_keyword.md -------------------------------------------------------------------------------- /config/contents/style/space_before_first_arg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/space_before_first_arg.md -------------------------------------------------------------------------------- /config/contents/style/space_in_lambda_literal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/space_in_lambda_literal.md -------------------------------------------------------------------------------- /config/contents/style/space_inside_array_percent_literal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/space_inside_array_percent_literal.md -------------------------------------------------------------------------------- /config/contents/style/space_inside_block_braces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/space_inside_block_braces.md -------------------------------------------------------------------------------- /config/contents/style/space_inside_percent_literal_delimiters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/space_inside_percent_literal_delimiters.md -------------------------------------------------------------------------------- /config/contents/style/space_inside_range_literal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/space_inside_range_literal.md -------------------------------------------------------------------------------- /config/contents/style/space_inside_string_interpolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/space_inside_string_interpolation.md -------------------------------------------------------------------------------- /config/contents/style/stabby_lambda_parentheses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/stabby_lambda_parentheses.md -------------------------------------------------------------------------------- /config/contents/style/stderr_puts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/stderr_puts.md -------------------------------------------------------------------------------- /config/contents/style/string_hash_keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/string_hash_keys.md -------------------------------------------------------------------------------- /config/contents/style/string_literals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/string_literals.md -------------------------------------------------------------------------------- /config/contents/style/string_literals_in_interpolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/string_literals_in_interpolation.md -------------------------------------------------------------------------------- /config/contents/style/string_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/string_methods.md -------------------------------------------------------------------------------- /config/contents/style/struct_inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/struct_inheritance.md -------------------------------------------------------------------------------- /config/contents/style/symbol_array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/symbol_array.md -------------------------------------------------------------------------------- /config/contents/style/symbol_literal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/symbol_literal.md -------------------------------------------------------------------------------- /config/contents/style/symbol_proc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/symbol_proc.md -------------------------------------------------------------------------------- /config/contents/style/ternary_parentheses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/ternary_parentheses.md -------------------------------------------------------------------------------- /config/contents/style/trailing_body_on_method_definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/trailing_body_on_method_definition.md -------------------------------------------------------------------------------- /config/contents/style/trailing_comma_in_arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/trailing_comma_in_arguments.md -------------------------------------------------------------------------------- /config/contents/style/trailing_comma_in_literal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/trailing_comma_in_literal.md -------------------------------------------------------------------------------- /config/contents/style/trailing_method_end_statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/trailing_method_end_statement.md -------------------------------------------------------------------------------- /config/contents/style/trailing_underscore_variable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/trailing_underscore_variable.md -------------------------------------------------------------------------------- /config/contents/style/trivial_accessors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/trivial_accessors.md -------------------------------------------------------------------------------- /config/contents/style/unless_else.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/unless_else.md -------------------------------------------------------------------------------- /config/contents/style/unneeded_capital_w.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/unneeded_capital_w.md -------------------------------------------------------------------------------- /config/contents/style/unneeded_interpolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/unneeded_interpolation.md -------------------------------------------------------------------------------- /config/contents/style/variable_interpolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/variable_interpolation.md -------------------------------------------------------------------------------- /config/contents/style/variable_number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/variable_number.md -------------------------------------------------------------------------------- /config/contents/style/when_then.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/when_then.md -------------------------------------------------------------------------------- /config/contents/style/while_until_do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/while_until_do.md -------------------------------------------------------------------------------- /config/contents/style/while_until_modifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/while_until_modifier.md -------------------------------------------------------------------------------- /config/contents/style/word_array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/word_array.md -------------------------------------------------------------------------------- /config/contents/style/yoda_condition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/yoda_condition.md -------------------------------------------------------------------------------- /config/contents/style/zero_length_predicate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/contents/style/zero_length_predicate.md -------------------------------------------------------------------------------- /config/cops.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/cops.yml -------------------------------------------------------------------------------- /config/style_guides/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/config/style_guides/ruby.yml -------------------------------------------------------------------------------- /lib/cc/engine/category_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/lib/cc/engine/category_parser.rb -------------------------------------------------------------------------------- /lib/cc/engine/config_upgrader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/lib/cc/engine/config_upgrader.rb -------------------------------------------------------------------------------- /lib/cc/engine/content_resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/lib/cc/engine/content_resolver.rb -------------------------------------------------------------------------------- /lib/cc/engine/file_list_resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/lib/cc/engine/file_list_resolver.rb -------------------------------------------------------------------------------- /lib/cc/engine/fingerprint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/lib/cc/engine/fingerprint.rb -------------------------------------------------------------------------------- /lib/cc/engine/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/lib/cc/engine/issue.rb -------------------------------------------------------------------------------- /lib/cc/engine/rubocop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/lib/cc/engine/rubocop.rb -------------------------------------------------------------------------------- /lib/cc/engine/source_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/lib/cc/engine/source_file.rb -------------------------------------------------------------------------------- /lib/rubocop/config_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/lib/rubocop/config_patch.rb -------------------------------------------------------------------------------- /lib/rubocop/cop_patches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/lib/rubocop/cop_patches.rb -------------------------------------------------------------------------------- /lib/tasks/docs.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/lib/tasks/docs.rake -------------------------------------------------------------------------------- /spec/cc/engine/category_parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/spec/cc/engine/category_parser_spec.rb -------------------------------------------------------------------------------- /spec/cc/engine/config_upgrader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/spec/cc/engine/config_upgrader_spec.rb -------------------------------------------------------------------------------- /spec/cc/engine/content_resolver_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/spec/cc/engine/content_resolver_spec.rb -------------------------------------------------------------------------------- /spec/cc/engine/file_list_resolver_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/spec/cc/engine/file_list_resolver_spec.rb -------------------------------------------------------------------------------- /spec/cc/engine/fingerprint_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/spec/cc/engine/fingerprint_spec.rb -------------------------------------------------------------------------------- /spec/cc/engine/issue_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/spec/cc/engine/issue_spec.rb -------------------------------------------------------------------------------- /spec/cc/engine/rubocop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/spec/cc/engine/rubocop_spec.rb -------------------------------------------------------------------------------- /spec/cc/engine/source_file_spec.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/rubocop/config_patch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/spec/rubocop/config_patch_spec.rb -------------------------------------------------------------------------------- /spec/rubocop/cop_patches_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/spec/rubocop/cop_patches_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require "rspec" 2 | 3 | Dir.glob("spec/support/**/*.rb").each(&method(:load)) 4 | -------------------------------------------------------------------------------- /spec/support/currently_undocumented_cops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/spec/support/currently_undocumented_cops.txt -------------------------------------------------------------------------------- /spec/support/filesystem_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/spec/support/filesystem_helpers.rb -------------------------------------------------------------------------------- /spec/support/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/spec/support/matchers.rb -------------------------------------------------------------------------------- /spec/support/rubocop_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qltysh-archive/codeclimate-rubocop/HEAD/spec/support/rubocop_runner.rb --------------------------------------------------------------------------------