|
6 | 6 |
|
7 | 7 | access_to_a_protected_member |
8 | 8 | an_attribute_hides_this_method |
9 | | - arguments_number_differs_from_method |
10 | | - assigning_to_function_call_which_does_not_return |
11 | | - assigning_to_function_call_which_only_returns_none |
| 9 | + Args number differs <arguments_number_differs_from_method> |
| 10 | + Function doesn't return <assigning_to_function_call_which_does_not_return> |
| 11 | + Function only returns None <assigning_to_function_call_which_only_returns_none> |
12 | 12 | bad_except_clauses_order |
13 | | - bad_first_argument_given_to_super |
| 13 | + Bad arg for super <bad_first_argument_given_to_super> |
14 | 14 | class_has_no_init_method |
15 | 15 | class_has_no_member |
16 | | - dangerous_default_value_as_argument |
17 | | - do_not_assign_a_lambda_expression |
18 | | - duplicate_argument_name_in_function_definition |
19 | | - else_clause_on_loop_without_a_break_statement |
| 16 | + Dangerous default arg value <dangerous_default_value_as_argument> |
| 17 | + Do not assign a lambda <do_not_assign_a_lambda_expression> |
| 18 | + Duplicate arg names <duplicate_argument_name_in_function_definition> |
| 19 | + No break statement <else_clause_on_loop_without_a_break_statement> |
20 | 20 | exit_must_accept_three_arguments |
21 | 21 | explicit_return_in_init |
22 | | - function_keyword_outside_of_function |
23 | | - future_import_is_not_the_first_statement |
24 | | - implementing_java-style_getters_and_setters |
25 | | - indentation_contains_mixed_spaces_and_tabs |
| 22 | + Invalid function keyword <function_keyword_outside_of_function> |
| 23 | + Future import must be first <future_import_is_not_the_first_statement> |
| 24 | + Using Java style <implementing_java-style_getters_and_setters> |
| 25 | + Spaces and tabs in indents <indentation_contains_mixed_spaces_and_tabs> |
26 | 26 | indentation_contains_tabs |
27 | | - init_method_from_a_non-direct_base_class_is_called |
28 | | - init_method_from_base_class_not_called |
| 27 | + Invalid init method <init_method_from_a_non-direct_base_class_is_called> |
| 28 | + init not called <init_method_from_base_class_not_called> |
29 | 29 | init_method_is_a_generator |
30 | 30 | invalid_object_in_all |
31 | 31 | iter_returns_non-iterator |
32 | | - list_comprehension_redefines_name_from_line_n |
33 | | - local_variable_name_referenced_before_assignment |
| 32 | + List comprehension renaming <list_comprehension_redefines_name_from_line_n> |
| 33 | + Using unassigned name <local_variable_name_referenced_before_assignment> |
34 | 34 | method_could_be_a_function |
35 | 35 | method_has_no_argument |
36 | | - method_is_abstract_in_class_but_is_not_overridden |
| 36 | + Abstract method not overridden <method_is_abstract_in_class_but_is_not_overridden> |
37 | 37 | missing_argument_to_super |
38 | 38 | no_exception_type_specified |
39 | 39 | no_name_in_module |
40 | | - no_value_passed_for_parameter_in_function_call |
| 40 | + Missing parameter value <no_value_passed_for_parameter_in_function_call> |
41 | 41 | not_using_defaultdict |
42 | 42 | not_using_else_in_a_loop |
43 | 43 | not_using_explicit_unpacking |
44 | | - not_using_get_to_return_a_default_value_from_a_dictionary |
45 | | - not_using_setdefault_to_initialize_a_dictionary |
| 44 | + Returning default dict values <not_using_get_to_return_a_default_value_from_a_dictionary> |
| 45 | + Initializing dicts <not_using_setdefault_to_initialize_a_dictionary> |
46 | 46 | notimplemented_raised |
47 | 47 | object_is_not_callable |
48 | | - parameter_passed_as_both_positional_and_keyword_argument |
49 | | - passing_unexpected_keyword_argument_in_function_call |
50 | | - raising_or_catching_a_class_which_does_not_inherit_from_baseexception |
| 48 | + Arg is both positional and keyword <parameter_passed_as_both_positional_and_keyword_argument> |
| 49 | + Unexpected keyword arg <passing_unexpected_keyword_argument_in_function_call> |
| 50 | + Invalid exception class <raising_or_catching_a_class_which_does_not_inherit_from_baseexception> |
51 | 51 | raising_unallowed_type |
52 | 52 | redefining_name_from_outer_scope |
53 | | - return_with_argument_inside_generator |
54 | | - too_many_positional_arguments_for_function_call |
| 53 | + Non-empty return in generator <return_with_argument_inside_generator> |
| 54 | + Too many positional args <too_many_positional_arguments_for_function_call> |
55 | 55 | undefined_name |
56 | 56 | unreachable_code |
57 | 57 | unused_argument |
58 | | - using_string_concatenation_instead_of_formatting |
| 58 | + Using string concatenation <using_string_concatenation_instead_of_formatting> |
59 | 59 |
|
0 commit comments