Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
124 additions
and 292 deletions.
- +1 −2 .formatter.exs
- +1 −2 lib/credo/check.ex
- +1 −2 lib/credo/check/consistency/exception_names.ex
- +1 −2 lib/credo/check/consistency/multi_alias_import_require_use.ex
- +1 −2 lib/credo/check/consistency/multi_alias_import_require_use/collector.ex
- +1 −2 lib/credo/check/consistency/parameter_pattern_matching.ex
- +3 −9 lib/credo/check/consistency/space_around_operators.ex
- +1 −2 lib/credo/check/consistency/space_in_parentheses.ex
- +1 −2 lib/credo/check/consistency/tabs_or_spaces.ex
- +9 −19 lib/credo/check/design/alias_usage.ex
- +1 −2 lib/credo/check/design/duplicated_code.ex
- +1 −2 lib/credo/check/find_lint_attributes.ex
- +3 −6 lib/credo/check/readability/max_line_length.ex
- +1 −2 lib/credo/check/readability/module_doc.ex
- +3 −6 lib/credo/check/readability/parentheses_in_condition.ex
- +1 −2 lib/credo/check/readability/parentheses_on_zero_arity_defs.ex
- +1 −4 lib/credo/check/readability/prefer_unquoted_atoms.ex
- +2 −4 lib/credo/check/readability/redundant_blank_lines.ex
- +1 −2 lib/credo/check/readability/semicolons.ex
- +3 −6 lib/credo/check/readability/string_sigils.ex
- +1 −2 lib/credo/check/readability/trailing_white_space.ex
- +2 −6 lib/credo/check/refactor/abc_size.ex
- +1 −2 lib/credo/check/refactor/append_single_item.ex
- +1 −2 lib/credo/check/refactor/cond_statements.ex
- +2 −4 lib/credo/check/refactor/cyclomatic_complexity.ex
- +3 −7 lib/credo/check/refactor/function_arity.ex
- +1 −2 lib/credo/check/refactor/long_quote_blocks.ex
- +1 −3 lib/credo/check/refactor/nesting.ex
- +2 −4 lib/credo/check/refactor/perceived_complexity.ex
- +3 −6 lib/credo/check/refactor/pipe_chain_start.ex
- +1 −2 lib/credo/check/refactor/unless_with_else.ex
- +1 −3 lib/credo/check/warning/bool_operation_on_same_values.ex
- +2 −4 lib/credo/check/warning/lazy_logging.ex
- +1 −2 lib/credo/check/warning/name_redeclaration_by_case.ex
- +1 −2 lib/credo/check/warning/name_redeclaration_by_def.ex
- +1 −2 lib/credo/check/warning/name_redeclaration_by_fn.ex
- +2 −4 lib/credo/check/warning/raise_inside_rescue.ex
- +1 −2 lib/credo/check/warning/unused_function_return_helper.ex
- +1 −2 lib/credo/cli/command/list/list_command.ex
- +1 −2 lib/credo/cli/command/suggest/suggest_command.ex
- +1 −2 lib/credo/cli/filter.ex
- +2 −4 lib/credo/cli/task/prepare_checks_to_run.ex
- +1 −2 lib/credo/code/block.ex
- +2 −4 lib/credo/code/interpolation_helper.ex
- +1 −3 lib/credo/code/parameters.ex
- +12 −51 lib/credo/code/token.ex
- +1 −3 lib/credo/execution/monitor.ex
- +2 −5 lib/credo/execution/task.ex
- +1 −2 lib/credo/execution/task/parse_options.ex
- +1 −2 lib/credo/priority.ex
- +1 −2 mix.exs
- +2 −4 test/credo/check/code_helper_test.exs
- +1 −2 test/credo/check/config_comment_finder_test.exs
- +5 −10 test/credo/check/design/duplicated_code_test.exs
- +2 −4 test/credo/cli/command/gen.check_test.exs
- +3 −7 test/credo/cli/filename_test.exs
- +4 −12 test/credo/code/interpolation_helper_test.exs
- +1 −2 test/credo/code/name_test.exs
- +2 −4 test/credo/code/parameters_test.exs
- +6 −12 test/credo/code/scope_test.exs
- +4 −4 test/credo/config_file_test.exs
- +1 −2 test/credo/source_file_test.exs
- +2 −6 test/test_helper.exs
Oops, something went wrong.