├── .codespellrc ├── .coveragerc ├── .github ├── CODEOWNERS └── workflows │ ├── code-spell.yml │ ├── python-publish.yml │ └── unit-tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pre-commit-hooks.yaml ├── .readthedocs.yml ├── CHANGES.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── codecov.yml ├── docs ├── Makefile ├── _templates │ └── sidebar │ │ └── brand.html ├── make.bat ├── releasenotes │ ├── 2.0.md │ ├── 2.0a1.md │ ├── 2.0b1.md │ ├── 3.0.rst │ ├── 3.0b1.rst │ ├── 3.1.rst │ ├── 3.2.rst │ ├── 3.3.1.rst │ ├── 3.3.2.rst │ ├── 3.3.3.rst │ ├── 3.3.rst │ ├── 3.4.0.rst │ ├── 3.5.0.rst │ ├── 4.0.0.rst │ ├── 4.0.1.rst │ ├── 4.1.0.rst │ ├── 4.10.0.rst │ ├── 4.11.0.rst │ ├── 4.12.0.rst │ ├── 4.13.0.rst │ ├── 4.14.0.rst │ ├── 4.16.0.rst │ ├── 4.2.0.rst │ ├── 4.2.1.rst │ ├── 4.3.0.rst │ ├── 4.4.0.rst │ ├── 4.5.0.rst │ ├── 4.7.0.rst │ ├── 4.8.0.rst │ ├── 4.8.1.rst │ ├── 4.9.0.rst │ └── unreleased │ │ └── template.jinja └── source │ ├── _static │ ├── robotidy.ico │ ├── robotidy_logo.png │ ├── robotidy_logo_small.png │ └── robotidy_logo_small_dark.png │ ├── conf.py │ ├── configuration │ ├── config_file.rst │ ├── configuring_transformers.rst │ ├── disablers.rst │ ├── index.rst │ └── skip_formatting.rst │ ├── external_transformers.rst │ ├── index.rst │ ├── overview.rst │ ├── quickstart.rst │ └── transformers │ ├── AddMissingEnd.rst │ ├── AlignKeywordsSection.rst │ ├── AlignSettingsSection.rst │ ├── AlignTemplatedTestCases.rst │ ├── AlignTestCasesSection.rst │ ├── AlignVariablesSection.rst │ ├── DiscardEmptySections.rst │ ├── GenerateDocumentation.rst │ ├── IndentNestedKeywords.rst │ ├── InlineIf.rst │ ├── MergeAndOrderSections.rst │ ├── NormalizeAssignments.rst │ ├── NormalizeComments.rst │ ├── NormalizeNewLines.rst │ ├── NormalizeSectionHeaderName.rst │ ├── NormalizeSeparators.rst │ ├── NormalizeSettingName.rst │ ├── NormalizeTags.rst │ ├── OrderSettings.rst │ ├── OrderSettingsSection.rst │ ├── OrderTags.rst │ ├── RemoveEmptySettings.rst │ ├── RenameKeywords.rst │ ├── RenameTestCases.rst │ ├── RenameVariables.rst │ ├── ReplaceBreakContinue.rst │ ├── ReplaceEmptyValues.rst │ ├── ReplaceReturns.rst │ ├── ReplaceRunKeywordIf.rst │ ├── ReplaceWithVAR.rst │ ├── SmartSortKeywords.rst │ ├── SplitTooLongLine.rst │ ├── Translate.rst │ ├── disabled_hint.txt │ ├── enabled_hint.txt │ └── index.rst ├── noxfile.py ├── pyproject.toml ├── robotidy ├── __init__.py ├── __main__.py ├── api.py ├── app.py ├── cli.py ├── config.py ├── decorators.py ├── disablers.py ├── exceptions.py ├── files.py ├── rich_console.py ├── skip.py ├── transformers │ ├── AddMissingEnd.py │ ├── AlignKeywordsSection.py │ ├── AlignSettingsSection.py │ ├── AlignTemplatedTestCases.py │ ├── AlignTestCasesSection.py │ ├── AlignVariablesSection.py │ ├── DiscardEmptySections.py │ ├── GenerateDocumentation.py │ ├── IndentNestedKeywords.py │ ├── InlineIf.py │ ├── MergeAndOrderSections.py │ ├── NormalizeAssignments.py │ ├── NormalizeComments.py │ ├── NormalizeNewLines.py │ ├── NormalizeSectionHeaderName.py │ ├── NormalizeSeparators.py │ ├── NormalizeSettingName.py │ ├── NormalizeTags.py │ ├── OrderSettings.py │ ├── OrderSettingsSection.py │ ├── OrderTags.py │ ├── RemoveEmptySettings.py │ ├── RenameKeywords.py │ ├── RenameTestCases.py │ ├── RenameVariables.py │ ├── ReplaceBreakContinue.py │ ├── ReplaceEmptyValues.py │ ├── ReplaceReturns.py │ ├── ReplaceRunKeywordIf.py │ ├── ReplaceWithVAR.py │ ├── SmartSortKeywords.py │ ├── SplitTooLongLine.py │ ├── Translate.py │ ├── __init__.py │ ├── aligners_core.py │ └── run_keywords.py ├── utils │ ├── misc.py │ └── variable_matcher.py └── version.py ├── setup.py ├── tasks.py ├── tests ├── README.rst ├── __init__.py ├── atest │ ├── __init__.py │ ├── configuration_files │ │ ├── __init__.py │ │ └── multiple_configs │ │ │ ├── __init__.py │ │ │ ├── expected │ │ │ ├── root │ │ │ │ ├── a │ │ │ │ │ ├── .robotidy │ │ │ │ │ └── a_test.robot │ │ │ │ ├── b │ │ │ │ │ └── bb │ │ │ │ │ │ └── bb_test.robot │ │ │ │ ├── c │ │ │ │ │ ├── c_test.robot │ │ │ │ │ └── pyproject.toml │ │ │ │ └── pyproject.toml │ │ │ └── test.robot │ │ │ ├── expected_config_option │ │ │ ├── root │ │ │ │ ├── a │ │ │ │ │ ├── .robotidy │ │ │ │ │ └── a_test.robot │ │ │ │ ├── b │ │ │ │ │ └── bb │ │ │ │ │ │ └── bb_test.robot │ │ │ │ ├── c │ │ │ │ │ ├── c_test.robot │ │ │ │ │ └── pyproject.toml │ │ │ │ └── pyproject.toml │ │ │ └── test.robot │ │ │ ├── source │ │ │ ├── root │ │ │ │ ├── a │ │ │ │ │ ├── .robotidy │ │ │ │ │ └── a_test.robot │ │ │ │ ├── b │ │ │ │ │ └── bb │ │ │ │ │ │ └── bb_test.robot │ │ │ │ ├── c │ │ │ │ │ ├── c_test.robot │ │ │ │ │ └── pyproject.toml │ │ │ │ └── pyproject.toml │ │ │ └── test.robot │ │ │ └── test_multiple_configs.py │ └── transformers │ │ ├── AddMissingEnd │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── test.robot │ │ │ ├── test_5.robot │ │ │ └── test_selected.robot │ │ ├── source │ │ │ ├── test.robot │ │ │ ├── test_5.robot │ │ │ └── test_5_disablers.robot │ │ └── test_transformer.py │ │ ├── AlignKeywordsSection │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── align_settings_separately.robot │ │ │ ├── blocks.robot │ │ │ ├── blocks_auto.robot │ │ │ ├── blocks_auto_0.robot │ │ │ ├── blocks_rf5.robot │ │ │ ├── compact_overflow_last_0.robot │ │ │ ├── documentation_auto_align_first_col.robot │ │ │ ├── documentation_auto_skip.robot │ │ │ ├── documentation_fixed_align_first_col.robot │ │ │ ├── documentation_fixed_skip.robot │ │ │ ├── groups.robot │ │ │ ├── non_ascii_spaces.robot │ │ │ ├── one_column.robot │ │ │ ├── overflow_first_line.robot │ │ │ ├── settings.robot │ │ │ ├── simple_auto_ignore_line_0.robot │ │ │ ├── simple_auto_ignore_line_24_0_24.robot │ │ │ ├── simple_auto_ignore_line_24_24_24.robot │ │ │ ├── simple_auto_ignore_line_24_40_24.robot │ │ │ ├── simple_auto_ignore_line_4_4_4.robot │ │ │ ├── simple_auto_ignore_rest_0.robot │ │ │ ├── simple_auto_ignore_rest_24_0_24.robot │ │ │ ├── simple_auto_ignore_rest_24_24_24.robot │ │ │ ├── simple_auto_ignore_rest_24_40_24.robot │ │ │ ├── simple_auto_ignore_rest_4_4_4.robot │ │ │ ├── simple_auto_overflow_0.robot │ │ │ ├── simple_auto_overflow_24_0_24.robot │ │ │ ├── simple_auto_overflow_24_24_24.robot │ │ │ ├── simple_auto_overflow_24_40_24.robot │ │ │ ├── simple_auto_overflow_4_4_4.robot │ │ │ ├── simple_fixed_ignore_line_0.robot │ │ │ ├── simple_fixed_ignore_line_24_0_24.robot │ │ │ ├── simple_fixed_ignore_line_24_24_24.robot │ │ │ ├── simple_fixed_ignore_line_24_40_24.robot │ │ │ ├── simple_fixed_ignore_line_4_4_4.robot │ │ │ ├── simple_fixed_ignore_rest_0.robot │ │ │ ├── simple_fixed_ignore_rest_24_0_24.robot │ │ │ ├── simple_fixed_ignore_rest_24_24_24.robot │ │ │ ├── simple_fixed_ignore_rest_24_40_24.robot │ │ │ ├── simple_fixed_ignore_rest_4_4_4.robot │ │ │ ├── simple_fixed_overflow_0.robot │ │ │ ├── simple_fixed_overflow_24_0_24.robot │ │ │ ├── simple_fixed_overflow_24_24_24.robot │ │ │ ├── simple_fixed_overflow_24_40_24.robot │ │ │ ├── simple_fixed_overflow_4_4_4.robot │ │ │ ├── skip_keywords.robot │ │ │ ├── skip_return_values.robot │ │ │ ├── skip_settings.robot │ │ │ ├── too_long_line.robot │ │ │ ├── too_long_line_disablers.robot │ │ │ ├── too_long_token_counter_compact_overflow.robot │ │ │ ├── too_long_token_counter_ignore_line.robot │ │ │ ├── too_long_token_counter_ignore_rest.robot │ │ │ └── too_long_token_counter_overflow.robot │ │ ├── source │ │ │ ├── align_settings_separately.robot │ │ │ ├── blocks.robot │ │ │ ├── blocks_rf5.robot │ │ │ ├── compact_overflow_last_0.robot │ │ │ ├── documentation.robot │ │ │ ├── error_node.robot │ │ │ ├── groups.robot │ │ │ ├── non_ascii_spaces.robot │ │ │ ├── one_column.robot │ │ │ ├── overflow_first_line.robot │ │ │ ├── settings.robot │ │ │ ├── simple.robot │ │ │ ├── skip_keywords.robot │ │ │ ├── skip_return_values.robot │ │ │ ├── too_long_line.robot │ │ │ ├── too_long_line_disablers.robot │ │ │ └── too_long_token_counter.robot │ │ └── test_transformer.py │ │ ├── AlignSettingsSection │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── all_columns.robot │ │ │ ├── all_columns_fixed.robot │ │ │ ├── argument_indents.robot │ │ │ ├── blank_line_and_whitespace.robot │ │ │ ├── blank_line_doc.robot │ │ │ ├── empty_lines.robot │ │ │ ├── multiline_keywords.robot │ │ │ ├── multiline_keywords_0indent.robot │ │ │ ├── multiline_keywords_20indent.robot │ │ │ ├── multiline_keywords_2indent.robot │ │ │ ├── multiline_keywords_all_col.robot │ │ │ ├── selected_part.robot │ │ │ ├── selected_whole.robot │ │ │ ├── test.robot │ │ │ ├── test_disablers.robot │ │ │ ├── test_fixed.robot │ │ │ ├── test_min_width.robot │ │ │ ├── test_min_width_50_width.robot │ │ │ ├── test_skip_documentation.robot │ │ │ └── three_columns.robot │ │ ├── source │ │ │ ├── argument_indents.robot │ │ │ ├── blank_line_and_whitespace.robot │ │ │ ├── blank_line_doc.robot │ │ │ ├── empty_lines.robot │ │ │ ├── multiline_keywords.robot │ │ │ ├── test.robot │ │ │ └── test_disablers.robot │ │ └── test_transformer.py │ │ ├── AlignTemplatedTestCases │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── no_header_col.robot │ │ │ ├── partly_templated.robot │ │ │ ├── tags_settings.robot │ │ │ ├── templated_for_loops.robot │ │ │ ├── templated_for_loops_and_without.robot │ │ │ ├── templated_for_loops_and_without_fixed.robot │ │ │ ├── templated_for_loops_header_cols.robot │ │ │ ├── test.robot │ │ │ ├── test_fixed.robot │ │ │ └── with_settings.robot │ │ ├── source │ │ │ ├── disablers.robot │ │ │ ├── empty_line.robot │ │ │ ├── for_loops.robot │ │ │ ├── no_header_col.robot │ │ │ ├── partly_templated.robot │ │ │ ├── tags_settings.robot │ │ │ ├── templated_for_loops.robot │ │ │ ├── templated_for_loops_and_without.robot │ │ │ ├── templated_for_loops_header_cols.robot │ │ │ ├── test.robot │ │ │ └── with_settings.robot │ │ └── test_transformer.py │ │ ├── AlignTestCasesSection │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── blocks.robot │ │ │ ├── blocks_auto.robot │ │ │ ├── blocks_auto_0.robot │ │ │ ├── blocks_rf5.robot │ │ │ ├── compact_overflow_bug.robot │ │ │ ├── compact_overflow_last_0.robot │ │ │ ├── documentation_auto_align_first_col.robot │ │ │ ├── documentation_auto_skip.robot │ │ │ ├── documentation_fixed_align_first_col.robot │ │ │ ├── documentation_fixed_skip.robot │ │ │ ├── dynamic_compact_overflow.robot │ │ │ ├── dynamic_compact_overflow_limit_1.robot │ │ │ ├── groups.robot │ │ │ ├── non_ascii_spaces.robot │ │ │ ├── one_column.robot │ │ │ ├── overflow_first_line.robot │ │ │ ├── settings.robot │ │ │ ├── settings_auto_separate_settings.robot │ │ │ ├── simple_auto_ignore_line_0.robot │ │ │ ├── simple_auto_ignore_line_24_0_24.robot │ │ │ ├── simple_auto_ignore_line_24_24_24.robot │ │ │ ├── simple_auto_ignore_line_24_40_24.robot │ │ │ ├── simple_auto_ignore_line_4_4_4.robot │ │ │ ├── simple_auto_ignore_rest_0.robot │ │ │ ├── simple_auto_ignore_rest_24_0_24.robot │ │ │ ├── simple_auto_ignore_rest_24_24_24.robot │ │ │ ├── simple_auto_ignore_rest_24_40_24.robot │ │ │ ├── simple_auto_ignore_rest_4_4_4.robot │ │ │ ├── simple_auto_overflow_0.robot │ │ │ ├── simple_auto_overflow_24_0_24.robot │ │ │ ├── simple_auto_overflow_24_24_24.robot │ │ │ ├── simple_auto_overflow_24_40_24.robot │ │ │ ├── simple_auto_overflow_4_4_4.robot │ │ │ ├── simple_fixed_ignore_line_0.robot │ │ │ ├── simple_fixed_ignore_line_24_0_24.robot │ │ │ ├── simple_fixed_ignore_line_24_24_24.robot │ │ │ ├── simple_fixed_ignore_line_24_40_24.robot │ │ │ ├── simple_fixed_ignore_line_4_4_4.robot │ │ │ ├── simple_fixed_ignore_rest_0.robot │ │ │ ├── simple_fixed_ignore_rest_24_0_24.robot │ │ │ ├── simple_fixed_ignore_rest_24_24_24.robot │ │ │ ├── simple_fixed_ignore_rest_24_40_24.robot │ │ │ ├── simple_fixed_ignore_rest_4_4_4.robot │ │ │ ├── simple_fixed_overflow_0.robot │ │ │ ├── simple_fixed_overflow_24_0_24.robot │ │ │ ├── simple_fixed_overflow_24_24_24.robot │ │ │ ├── simple_fixed_overflow_24_40_24.robot │ │ │ ├── simple_fixed_overflow_4_4_4.robot │ │ │ ├── skip_keywords.robot │ │ │ ├── skip_return_values_overflow.robot │ │ │ ├── templated_with_setting.robot │ │ │ ├── templated_with_settings_auto.robot │ │ │ ├── too_long_token_counter_compact_overflow.robot │ │ │ ├── too_long_token_counter_ignore_line.robot │ │ │ ├── too_long_token_counter_ignore_rest.robot │ │ │ └── too_long_token_counter_overflow.robot │ │ ├── source │ │ │ ├── blocks.robot │ │ │ ├── blocks_rf5.robot │ │ │ ├── compact_overflow_bug.robot │ │ │ ├── compact_overflow_last_0.robot │ │ │ ├── documentation.robot │ │ │ ├── dynamic_compact_overflow.robot │ │ │ ├── dynamic_compact_overflow_limit_1.robot │ │ │ ├── groups.robot │ │ │ ├── non_ascii_spaces.robot │ │ │ ├── one_column.robot │ │ │ ├── overflow_first_line.robot │ │ │ ├── settings.robot │ │ │ ├── simple.robot │ │ │ ├── skip_keywords.robot │ │ │ ├── skip_return_values_overflow.robot │ │ │ ├── templated.robot │ │ │ ├── templated_with_setting.robot │ │ │ └── too_long_token_counter.robot │ │ └── test_transformer.py │ │ ├── AlignVariablesSection │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── align_selected_part.robot │ │ │ ├── align_selected_skip.robot │ │ │ ├── align_selected_whole.robot │ │ │ ├── all_columns.robot │ │ │ ├── all_columns_fixed.robot │ │ │ ├── long_comment.robot │ │ │ ├── multiline_skip.robot │ │ │ ├── multiline_with_blank.robot │ │ │ ├── optional_equal_sign.robot │ │ │ ├── single_var.robot │ │ │ ├── tests.robot │ │ │ ├── tests_2space_sep.robot │ │ │ ├── tests_disablers.robot │ │ │ ├── tests_fixed.robot │ │ │ ├── tests_fixed_one.robot │ │ │ ├── tests_min_width.robot │ │ │ ├── tests_min_width_50_width.robot │ │ │ ├── tests_skip.robot │ │ │ └── three_columns.robot │ │ ├── source │ │ │ ├── align_selected.robot │ │ │ ├── long_comment.robot │ │ │ ├── multiline_skip.robot │ │ │ ├── multiline_with_blank.robot │ │ │ ├── optional_equal_sign.robot │ │ │ ├── single_var.robot │ │ │ ├── tests.robot │ │ │ └── tests_disablers.robot │ │ └── test_transformer.py │ │ ├── DiscardEmptySections │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── removes_empty_sections.robot │ │ │ ├── removes_empty_sections_except_comments.robot │ │ │ ├── removes_empty_sections_skip_variables.robot │ │ │ └── removes_selected_empty_section.robot │ │ ├── source │ │ │ ├── removes_empty_sections.robot │ │ │ └── removes_empty_sections_disablers.robot │ │ └── test_transformer.py │ │ ├── ExternalTransformer │ │ ├── ExternalDisabledTransformer.py │ │ ├── ExternalTransformer.py │ │ ├── ExternalTransformers │ │ │ ├── __init__.py │ │ │ └── custom_class.py │ │ ├── ExternalTransformersOrdered │ │ │ ├── __init__.py │ │ │ ├── custom_class.py │ │ │ └── custom_class2.py │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── tests.robot │ │ │ ├── tests_lowercase.robot │ │ │ ├── tests_module_load.robot │ │ │ ├── tests_module_load_configure.robot │ │ │ ├── tests_module_transform.robot │ │ │ ├── tests_module_transform_configure.robot │ │ │ ├── tests_only_defaults.robot │ │ │ ├── tests_with_defaults.robot │ │ │ └── tests_with_defaults_lowercase.robot │ │ ├── source │ │ │ └── tests.robot │ │ └── test_transformer.py │ │ ├── GenerateDocumentation │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── overwrite.robot │ │ │ ├── template_with_defaults.robot │ │ │ ├── test.robot │ │ │ └── test_rf4.robot │ │ ├── source │ │ │ ├── invalid_template.jinja │ │ │ ├── template_with_defaults.txt │ │ │ └── test.robot │ │ └── test_transformer.py │ │ ├── IndentNestedKeywords │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── comments.robot │ │ │ ├── indent_and_2spaces_4cont_indent.robot │ │ │ ├── keep_in_line.robot │ │ │ ├── run_keyword.robot │ │ │ ├── settings.robot │ │ │ ├── split_and_indent.robot │ │ │ └── too_long_line.robot │ │ ├── source │ │ │ ├── comments.robot │ │ │ ├── run_keyword.robot │ │ │ ├── settings.robot │ │ │ └── too_long_line.robot │ │ └── test_transformer.py │ │ ├── InlineIf │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── one_if_2spaces.robot │ │ │ ├── one_if_4spaces.robot │ │ │ ├── test.robot │ │ │ ├── test_disablers.robot │ │ │ └── test_skip_else.robot │ │ ├── source │ │ │ ├── invalid_if.robot │ │ │ ├── invalid_inline_if.robot │ │ │ ├── one_if.robot │ │ │ ├── test.robot │ │ │ └── test_disablers.robot │ │ └── test_transformer.py │ │ ├── MergeAndOrderSections │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── both_test_and_task.robot │ │ │ ├── both_test_and_task_rf6.robot │ │ │ ├── disablers.robot │ │ │ ├── empty_section.robot │ │ │ ├── multiple_header_comments.robot │ │ │ ├── nested_block_for.robot │ │ │ ├── nested_blocks.robot │ │ │ ├── order_settings_comments_keywords_variables_testcases.robot │ │ │ ├── tests.robot │ │ │ ├── tests_without_comment_section.robot │ │ │ ├── too_few_calls_in_keyword.robot │ │ │ └── translated.robot │ │ ├── source │ │ │ ├── both_test_and_task.robot │ │ │ ├── disablers.robot │ │ │ ├── empty_section.robot │ │ │ ├── inline_if.robot │ │ │ ├── invalid.robot │ │ │ ├── multiple_header_comments.robot │ │ │ ├── nested_block_for.robot │ │ │ ├── nested_blocks.robot │ │ │ ├── order.robot │ │ │ ├── parsing_error.robot │ │ │ ├── tests.robot │ │ │ ├── too_few_calls_in_keyword.robot │ │ │ └── translated.robot │ │ └── test_merge_and_order_sections.py │ │ ├── NormalizeAssignments │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── common_equal_sign.robot │ │ │ ├── common_equal_sign_variables.robot │ │ │ ├── common_remove.robot │ │ │ ├── common_remove_variables.robot │ │ │ ├── common_space_and_equal_sign.robot │ │ │ ├── common_space_and_equal_sign_variables.robot │ │ │ ├── equal_sign.robot │ │ │ ├── remove.robot │ │ │ └── space_and_equal_sign.robot │ │ ├── source │ │ │ ├── common_equal_sign.robot │ │ │ ├── common_remove.robot │ │ │ ├── common_space_and_equal_sign.robot │ │ │ ├── disablers.robot │ │ │ └── tests.robot │ │ └── test_transformer.py │ │ ├── NormalizeComments │ │ ├── __init__.py │ │ ├── expected │ │ │ └── test.robot │ │ ├── source │ │ │ └── test.robot │ │ └── test_transformer.py │ │ ├── NormalizeNewLines │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── blocks.robot │ │ │ ├── consecutive_empty_lines_0line.robot │ │ │ ├── consecutive_empty_lines_1line.robot │ │ │ ├── consecutive_empty_lines_2line.robot │ │ │ ├── disablers_selected.robot │ │ │ ├── inline_if.robot │ │ │ ├── language_header_0empty.robot │ │ │ ├── language_header_2empty.robot │ │ │ ├── language_header_and_comments.robot │ │ │ ├── multiline.robot │ │ │ ├── templated_tests.robot │ │ │ ├── templated_tests_with_1_line.robot │ │ │ ├── test_case_last.robot │ │ │ ├── tests.robot │ │ │ ├── tests_three_lines_section.robot │ │ │ └── tests_two_lines_keywords.robot │ │ ├── source │ │ │ ├── blocks.robot │ │ │ ├── consecutive_empty_lines.robot │ │ │ ├── disablers.robot │ │ │ ├── disablers_selected.robot │ │ │ ├── inline_if_0_lines.robot │ │ │ ├── inline_if_1_lines.robot │ │ │ ├── inline_if_2_lines.robot │ │ │ ├── language_header_0empty.robot │ │ │ ├── language_header_2empty.robot │ │ │ ├── language_header_5empty.robot │ │ │ ├── language_header_and_comments.robot │ │ │ ├── multiline.robot │ │ │ ├── templated_tests.robot │ │ │ ├── test_case_last_0_lines.robot │ │ │ ├── test_case_last_1_lines.robot │ │ │ └── tests.robot │ │ └── test_normalize_new_lines.py │ │ ├── NormalizeSectionHeaderName │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── selected.robot │ │ │ ├── task.robot │ │ │ ├── task2.robot │ │ │ ├── tests.robot │ │ │ ├── translated.robot │ │ │ └── uppercase.robot │ │ ├── source │ │ │ ├── disablers.robot │ │ │ ├── task.robot │ │ │ ├── task2.robot │ │ │ ├── tests.robot │ │ │ └── translated.robot │ │ └── test_normalize_section_header.py │ │ ├── NormalizeSeparators │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── bug390.robot │ │ │ ├── comments_skip_block_comments.robot │ │ │ ├── comments_skip_comments.robot │ │ │ ├── cont_indent_align_new_line.robot │ │ │ ├── continuation_indent.robot │ │ │ ├── flatten.robot │ │ │ ├── flatten_rf4.robot │ │ │ ├── groups.robot │ │ │ ├── inline_if_2indent_2spaces.robot │ │ │ ├── inline_if_2indent_4spaces.robot │ │ │ ├── inline_if_4indent_2spaces.robot │ │ │ ├── inline_if_4indent_4spaces.robot │ │ │ ├── inline_if_flatten.robot │ │ │ ├── pipes.robot │ │ │ ├── rf5_syntax.robot │ │ │ ├── settings_variables_testcases.robot │ │ │ ├── skip_documentation.robot │ │ │ ├── skip_none.robot │ │ │ ├── test.robot │ │ │ ├── test_8spaces.robot │ │ │ ├── test_skip_keyword.robot │ │ │ └── testcases_keywords.robot │ │ ├── source │ │ │ ├── bug390.robot │ │ │ ├── comments.robot │ │ │ ├── continuation_indent.robot │ │ │ ├── disablers.robot │ │ │ ├── disablers2.robot │ │ │ ├── disablers3.robot │ │ │ ├── disablers4.robot │ │ │ ├── flatten.robot │ │ │ ├── groups.robot │ │ │ ├── inline_if.robot │ │ │ ├── pipes.robot │ │ │ ├── rf5_syntax.robot │ │ │ └── test.robot │ │ └── test_transformer.py │ │ ├── NormalizeSettingName │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── rf6.robot │ │ │ ├── selected.robot │ │ │ ├── tests.robot │ │ │ └── translated.robot │ │ ├── source │ │ │ ├── disablers.robot │ │ │ ├── rf6.robot │ │ │ ├── tests.robot │ │ │ └── translated.robot │ │ └── test_normalize_setting_name.py │ │ ├── NormalizeTags │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── duplicates.robot │ │ │ ├── lowercase.robot │ │ │ ├── preserve_format_default.robot │ │ │ ├── preserve_format_enabled.robot │ │ │ ├── spacing_2indent_2spaces.robot │ │ │ ├── spacing_2indent_4spaces.robot │ │ │ ├── spacing_4indent_2spaces.robot │ │ │ ├── spacing_4indent_4spaces.robot │ │ │ ├── titlecase.robot │ │ │ ├── uppercase.robot │ │ │ ├── variables_in_tags_lowercase.robot │ │ │ ├── variables_in_tags_titlecase.robot │ │ │ └── variables_in_tags_uppercase.robot │ │ ├── source │ │ │ ├── disablers.robot │ │ │ ├── disablers2.robot │ │ │ ├── disablers3.robot │ │ │ ├── disablers4.robot │ │ │ ├── duplicates.robot │ │ │ ├── preserve_format.robot │ │ │ ├── rf6.robot │ │ │ ├── spacing.robot │ │ │ ├── tests.robot │ │ │ └── variables_in_tags.robot │ │ └── test_transformer.py │ │ ├── OrderSettings │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── custom_order_all_end.robot │ │ │ ├── custom_order_all_end_pre_rf7.robot │ │ │ ├── custom_order_default.robot │ │ │ ├── custom_order_default_pre_rf7.robot │ │ │ ├── custom_order_without_test_teardown.robot │ │ │ ├── custom_order_without_test_teardown_pre_rf7.robot │ │ │ ├── stick_comments.robot │ │ │ ├── test.robot │ │ │ ├── test_pre_rf7.robot │ │ │ └── translated.robot │ │ ├── source │ │ │ ├── disablers.robot │ │ │ ├── stick_comments.robot │ │ │ ├── test.robot │ │ │ └── translated.robot │ │ └── test_order_settings.py │ │ ├── OrderSettingsSection │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── last_section.robot │ │ │ ├── missing_group.robot │ │ │ ├── parsing_error.robot │ │ │ ├── remote_library.robot │ │ │ ├── test.robot │ │ │ ├── test_0_newline.robot │ │ │ ├── test_2_newline.robot │ │ │ ├── test_empty_group_order.robot │ │ │ ├── test_group_order.robot │ │ │ ├── test_group_order_import_ordered.robot │ │ │ ├── test_missing_group_from_param.robot │ │ │ ├── test_resource_metadata_first.robot │ │ │ └── test_tags.robot │ │ ├── source │ │ │ ├── disablers.robot │ │ │ ├── just_comment.robot │ │ │ ├── last_section.robot │ │ │ ├── missing_group.robot │ │ │ ├── parsing_error.robot │ │ │ ├── remote_library.robot │ │ │ ├── test.robot │ │ │ └── test_tags.robot │ │ └── test_transformer.py │ │ ├── OrderTags │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── case_insensitive.robot │ │ │ ├── case_insensitive_reverse.robot │ │ │ ├── case_sensitive.robot │ │ │ ├── case_sensitive_reverse.robot │ │ │ ├── default.robot │ │ │ ├── default_tags_false.robot │ │ │ ├── force_tags_false.robot │ │ │ └── test_tags.robot │ │ ├── source │ │ │ ├── disablers.robot │ │ │ ├── test_tags.robot │ │ │ └── tests.robot │ │ └── test_transformer.py │ │ ├── RemoveEmptySettings │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── empty_always_more_explicit.robot │ │ │ ├── empty_always_no_explicit.robot │ │ │ ├── empty_overwritten_ok_more_explicit.robot │ │ │ ├── empty_overwritten_ok_no_explicit.robot │ │ │ ├── overwritten_always_more_explicit.robot │ │ │ ├── overwritten_always_no_explicit.robot │ │ │ ├── overwritten_overwritten_ok_more_explicit.robot │ │ │ └── overwritten_overwritten_ok_no_explicit.robot │ │ ├── source │ │ │ ├── disablers.robot │ │ │ ├── empty.robot │ │ │ └── overwritten.robot │ │ └── test_transformer.py │ │ ├── RenameKeywords │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── bug537_538.robot │ │ │ ├── capitalize_first.robot │ │ │ ├── embedded_variables.robot │ │ │ ├── library_embedded_var_pattern.robot │ │ │ ├── no_title_case.robot │ │ │ ├── rename_pattern_partial.robot │ │ │ ├── rename_pattern_whole.robot │ │ │ ├── run_keywords.robot │ │ │ ├── test.robot │ │ │ ├── test_transform_library.robot │ │ │ ├── with_library_name.robot │ │ │ ├── with_library_name_transform.robot │ │ │ └── with_underscores.robot │ │ ├── source │ │ │ ├── bug537_538.robot │ │ │ ├── disablers.robot │ │ │ ├── embedded_variables.robot │ │ │ ├── library_embedded_var_pattern.robot │ │ │ ├── no_title_case.robot │ │ │ ├── run_keywords.robot │ │ │ ├── test.robot │ │ │ └── with_library_name.robot │ │ └── test_transformer.py │ │ ├── RenameTestCases │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── replace_pattern_empty.robot │ │ │ ├── replace_pattern_placeholder.robot │ │ │ ├── replace_pattern_special_chars.robot │ │ │ ├── selected.robot │ │ │ ├── test.robot │ │ │ └── upper_case.robot │ │ ├── source │ │ │ ├── disablers.robot │ │ │ ├── empty_test_name.robot │ │ │ └── test.robot │ │ └── test_transformer.py │ │ ├── RenameVariables │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── VAR_syntax.robot │ │ │ ├── configure_ignore_vars.robot │ │ │ ├── disablers.robot │ │ │ ├── equal_sign_in_section.robot │ │ │ ├── excluded_vars.robot │ │ │ ├── groups.robot │ │ │ ├── if_while_conditions.robot │ │ │ ├── inline_if.robot │ │ │ ├── math_operations.robot │ │ │ ├── return_and_set_global.robot │ │ │ ├── test.robot │ │ │ ├── test_ignore_camel_case.robot │ │ │ ├── test_ignore_settings_case.robot │ │ │ ├── test_ignore_unknown.robot │ │ │ ├── test_ignore_var_separator.robot │ │ │ ├── test_lower.robot │ │ │ ├── test_lower_with_nested.robot │ │ │ ├── test_separator_underscore.robot │ │ │ ├── test_template.robot │ │ │ └── try_except.robot │ │ ├── source │ │ │ ├── VAR_syntax.robot │ │ │ ├── disablers.robot │ │ │ ├── equal_sign_in_section.robot │ │ │ ├── excluded_vars.robot │ │ │ ├── groups.robot │ │ │ ├── if_while_conditions.robot │ │ │ ├── inline_if.robot │ │ │ ├── math_operations.robot │ │ │ ├── return_and_set_global.robot │ │ │ ├── test.robot │ │ │ ├── test_template.robot │ │ │ └── try_except.robot │ │ └── test_transformer.py │ │ ├── ReplaceBreakContinue │ │ ├── __init__.py │ │ ├── expected │ │ │ └── test.robot │ │ ├── source │ │ │ ├── disablers.robot │ │ │ ├── errors.robot │ │ │ └── test.robot │ │ └── test_transformer.py │ │ ├── ReplaceEmptyValues │ │ ├── __init__.py │ │ ├── expected │ │ │ └── test.robot │ │ ├── source │ │ │ └── test.robot │ │ └── test_transformer.py │ │ ├── ReplaceReturns │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── return_from_keyword.robot │ │ │ ├── return_from_keyword_if.robot │ │ │ ├── return_from_keyword_if_selected.robot │ │ │ ├── test.robot │ │ │ └── test_selected.robot │ │ ├── source │ │ │ ├── errors.robot │ │ │ ├── replace_returns_disablers.robot │ │ │ ├── return_from_keyword.robot │ │ │ ├── return_from_keyword_if.robot │ │ │ ├── run_keyword_and_return.robot │ │ │ ├── run_keyword_and_return_if.robot │ │ │ └── test.robot │ │ └── test_transformer.py │ │ ├── ReplaceRunKeywordIf │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── configure_whitespace.robot │ │ │ ├── invalid_data.robot │ │ │ ├── keyword_name_in_var.robot │ │ │ ├── set_variable_workaround.robot │ │ │ ├── tests.robot │ │ │ └── tests_selected.robot │ │ ├── source │ │ │ ├── configure_whitespace.robot │ │ │ ├── disablers.robot │ │ │ ├── golden.robot │ │ │ ├── invalid_data.robot │ │ │ ├── keyword_name_in_var.robot │ │ │ ├── set_variable_workaround.robot │ │ │ └── tests.robot │ │ └── test_transformer.py │ │ ├── ReplaceWithVAR │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── explicit_local.robot │ │ │ ├── replace_catenate_false.robot │ │ │ ├── replace_create_dictionary_false.robot │ │ │ ├── replace_create_list_false.robot │ │ │ ├── replace_set_variable_if_false.robot │ │ │ ├── test.robot │ │ │ └── too_long.robot │ │ ├── source │ │ │ ├── invalid_inline_if.robot │ │ │ ├── test.robot │ │ │ └── too_long.robot │ │ └── test_transformer.py │ │ ├── SmartSortKeywords │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── multiple_sections.robot │ │ │ ├── sort_.robot │ │ │ ├── sort_ci.robot │ │ │ ├── sort_ci_ilu.robot │ │ │ ├── sort_ci_ilu_iou.robot │ │ │ ├── sort_ci_iou.robot │ │ │ ├── sort_ilu.robot │ │ │ ├── sort_ilu_iou.robot │ │ │ └── sort_iou.robot │ │ ├── source │ │ │ ├── disablers.robot │ │ │ ├── empty_before_fist_keyword.robot │ │ │ ├── multiple_sections.robot │ │ │ └── sort_input.robot │ │ └── test_transformer.py │ │ ├── SplitTooLongLine │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── VAR_syntax.robot │ │ │ ├── align_new_line.robot │ │ │ ├── align_new_line_all.robot │ │ │ ├── comments.robot │ │ │ ├── comments_skip_comments.robot │ │ │ ├── comments_split_scalar.robot │ │ │ ├── continuation_indent_feed.robot │ │ │ ├── continuation_indent_split.robot │ │ │ ├── feed_until_line_length.robot │ │ │ ├── feed_until_line_length_4.robot │ │ │ ├── multiple_assignments_on_every_arg.robot │ │ │ ├── multiple_assignments_on_every_arg_120.robot │ │ │ ├── multiple_assignments_until_line_length.robot │ │ │ ├── settings_on_every_arg.robot │ │ │ ├── settings_skip_tests.robot │ │ │ ├── settings_until_line_length.robot │ │ │ ├── settings_until_line_length_skip_comments.robot │ │ │ ├── skip_keywords.robot │ │ │ ├── split_on_every_arg.robot │ │ │ ├── split_on_every_arg_4.robot │ │ │ ├── variables_feed.robot │ │ │ ├── variables_split_on_every_value.robot │ │ │ └── variables_split_scalar.robot │ │ ├── source │ │ │ ├── VAR_syntax.robot │ │ │ ├── align_new_line.robot │ │ │ ├── comments.robot │ │ │ ├── continuation_indent.robot │ │ │ ├── disablers.robot │ │ │ ├── multiple_assignments.robot │ │ │ ├── settings.robot │ │ │ ├── tests.robot │ │ │ └── variables.robot │ │ └── test_transformer.py │ │ ├── Translate │ │ ├── __init__.py │ │ ├── expected │ │ │ ├── add_lang_header │ │ │ │ ├── comment_section.robot │ │ │ │ ├── diff_lang_header.robot │ │ │ │ ├── en_header.robot │ │ │ │ └── no_lang_header.robot │ │ │ ├── bdd │ │ │ │ ├── pl.robot │ │ │ │ ├── pl_alternative.robot │ │ │ │ └── uk.robot │ │ │ ├── de.robot │ │ │ ├── en.robot │ │ │ ├── en_with_pl_header.robot │ │ │ └── pl.robot │ │ ├── source │ │ │ ├── add_lang_header │ │ │ │ ├── comment_section.robot │ │ │ │ ├── diff_lang_header.robot │ │ │ │ ├── empty.robot │ │ │ │ ├── en_header.robot │ │ │ │ └── no_lang_header.robot │ │ │ ├── bdd │ │ │ │ └── en_and_pl.robot │ │ │ ├── en.robot │ │ │ ├── pl.robot │ │ │ ├── pl_and_de.robot │ │ │ └── pl_language_header.robot │ │ └── test_transformer.py │ │ └── __init__.py ├── conftest.py ├── e2e │ ├── test_data │ │ └── too_long_variable.robot │ └── test_transform_stability.py ├── pytest.ini ├── rf_versions_matrix │ ├── rf4 │ │ └── requirements.txt │ ├── rf5 │ │ └── requirements.txt │ ├── rf6 │ │ └── requirements.txt │ └── rf7 │ │ └── requirements.txt ├── utest │ ├── __init__.py │ ├── test_api.py │ ├── test_cli.py │ ├── test_config.py │ ├── test_disablers.py │ ├── test_load_transformers.py │ ├── test_skip.py │ ├── test_utils.py │ ├── testdata │ │ ├── auto_line_sep │ │ │ ├── .gitattributes │ │ │ ├── cr.robot │ │ │ ├── crlf.robot │ │ │ ├── crlf_mixed.robot │ │ │ ├── empty.robot │ │ │ └── lf.robot │ │ ├── check │ │ │ ├── golden.robot │ │ │ └── not_golden.robot │ │ ├── config.txt │ │ ├── config │ │ │ └── robotidy.toml │ │ ├── config_with_custom_transformers │ │ │ ├── CustomTransformer.py │ │ │ ├── custom_transformers.toml │ │ │ └── load_transformers.toml │ │ ├── disablers │ │ │ ├── empty.robot │ │ │ ├── file_disabled.robot │ │ │ ├── file_disabled_and_enabled.robot │ │ │ ├── file_disabled_enabled_in_comments.robot │ │ │ ├── file_disabled_in_comments.robot │ │ │ ├── file_disabled_in_comments_no_header.robot │ │ │ ├── file_disabled_in_selected.robot │ │ │ ├── open_disabler_in_section.robot │ │ │ └── test.robot │ │ ├── empty_pyproject1 │ │ │ └── pyproject.toml │ │ ├── empty_pyproject2 │ │ │ └── pyproject.toml │ │ ├── gitignore │ │ │ ├── .gitignore │ │ │ ├── nested │ │ │ │ ├── test.robot │ │ │ │ └── test2.robot │ │ │ ├── test.resource │ │ │ ├── test.robot │ │ │ ├── test.txt │ │ │ └── test2.robot │ │ ├── invalid_options_config │ │ │ ├── pyproject_confgure.toml │ │ │ └── pyproject_idontexist.toml │ │ ├── invalid_pyproject │ │ │ └── pyproject.toml │ │ ├── line_sep │ │ │ ├── expected.robot │ │ │ └── test.robot │ │ ├── nested │ │ │ ├── nested │ │ │ │ └── deeper │ │ │ │ │ └── test.robot │ │ │ └── robotidy.toml │ │ ├── only_pyproject │ │ │ └── pyproject.toml │ │ ├── pyproject_with_src │ │ │ ├── pyproject.toml │ │ │ ├── resources │ │ │ │ └── test.robot │ │ │ ├── test.robot │ │ │ └── test3.robot │ │ ├── read_only │ │ │ └── test.robot │ │ └── with_git_dir │ │ │ ├── project_a │ │ │ └── test.robot │ │ │ └── pyproject.toml │ └── utils.py └── utils.py └── utils ├── new_transformer_templates ├── docs.template ├── test_transformer.template └── transformer.template └── release_docs_templates └── new_release.template /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/.codespellrc -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @bhirsz @mnojek 2 | -------------------------------------------------------------------------------- /.github/workflows/code-spell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/.github/workflows/code-spell.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include robotidy * -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_templates/sidebar/brand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/_templates/sidebar/brand.html -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/releasenotes/2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/2.0.md -------------------------------------------------------------------------------- /docs/releasenotes/2.0a1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/2.0a1.md -------------------------------------------------------------------------------- /docs/releasenotes/2.0b1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/2.0b1.md -------------------------------------------------------------------------------- /docs/releasenotes/3.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/3.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/3.0b1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/3.0b1.rst -------------------------------------------------------------------------------- /docs/releasenotes/3.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/3.1.rst -------------------------------------------------------------------------------- /docs/releasenotes/3.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/3.2.rst -------------------------------------------------------------------------------- /docs/releasenotes/3.3.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/3.3.1.rst -------------------------------------------------------------------------------- /docs/releasenotes/3.3.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/3.3.2.rst -------------------------------------------------------------------------------- /docs/releasenotes/3.3.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/3.3.3.rst -------------------------------------------------------------------------------- /docs/releasenotes/3.3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/3.3.rst -------------------------------------------------------------------------------- /docs/releasenotes/3.4.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/3.4.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/3.5.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/3.5.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.0.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.0.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.0.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.0.1.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.1.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.1.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.10.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.10.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.11.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.11.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.12.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.12.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.13.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.13.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.14.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.14.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.16.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.16.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.2.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.2.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.2.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.2.1.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.3.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.3.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.4.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.4.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.5.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.5.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.7.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.7.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.8.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.8.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.8.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.8.1.rst -------------------------------------------------------------------------------- /docs/releasenotes/4.9.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/4.9.0.rst -------------------------------------------------------------------------------- /docs/releasenotes/unreleased/template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/releasenotes/unreleased/template.jinja -------------------------------------------------------------------------------- /docs/source/_static/robotidy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/_static/robotidy.ico -------------------------------------------------------------------------------- /docs/source/_static/robotidy_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/_static/robotidy_logo.png -------------------------------------------------------------------------------- /docs/source/_static/robotidy_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/_static/robotidy_logo_small.png -------------------------------------------------------------------------------- /docs/source/_static/robotidy_logo_small_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/_static/robotidy_logo_small_dark.png -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/configuration/config_file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/configuration/config_file.rst -------------------------------------------------------------------------------- /docs/source/configuration/configuring_transformers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/configuration/configuring_transformers.rst -------------------------------------------------------------------------------- /docs/source/configuration/disablers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/configuration/disablers.rst -------------------------------------------------------------------------------- /docs/source/configuration/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/configuration/index.rst -------------------------------------------------------------------------------- /docs/source/configuration/skip_formatting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/configuration/skip_formatting.rst -------------------------------------------------------------------------------- /docs/source/external_transformers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/external_transformers.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/overview.rst -------------------------------------------------------------------------------- /docs/source/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/quickstart.rst -------------------------------------------------------------------------------- /docs/source/transformers/AddMissingEnd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/AddMissingEnd.rst -------------------------------------------------------------------------------- /docs/source/transformers/AlignKeywordsSection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/AlignKeywordsSection.rst -------------------------------------------------------------------------------- /docs/source/transformers/AlignSettingsSection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/AlignSettingsSection.rst -------------------------------------------------------------------------------- /docs/source/transformers/AlignTemplatedTestCases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/AlignTemplatedTestCases.rst -------------------------------------------------------------------------------- /docs/source/transformers/AlignTestCasesSection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/AlignTestCasesSection.rst -------------------------------------------------------------------------------- /docs/source/transformers/AlignVariablesSection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/AlignVariablesSection.rst -------------------------------------------------------------------------------- /docs/source/transformers/DiscardEmptySections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/DiscardEmptySections.rst -------------------------------------------------------------------------------- /docs/source/transformers/GenerateDocumentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/GenerateDocumentation.rst -------------------------------------------------------------------------------- /docs/source/transformers/IndentNestedKeywords.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/IndentNestedKeywords.rst -------------------------------------------------------------------------------- /docs/source/transformers/InlineIf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/InlineIf.rst -------------------------------------------------------------------------------- /docs/source/transformers/MergeAndOrderSections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/MergeAndOrderSections.rst -------------------------------------------------------------------------------- /docs/source/transformers/NormalizeAssignments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/NormalizeAssignments.rst -------------------------------------------------------------------------------- /docs/source/transformers/NormalizeComments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/NormalizeComments.rst -------------------------------------------------------------------------------- /docs/source/transformers/NormalizeNewLines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/NormalizeNewLines.rst -------------------------------------------------------------------------------- /docs/source/transformers/NormalizeSectionHeaderName.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/NormalizeSectionHeaderName.rst -------------------------------------------------------------------------------- /docs/source/transformers/NormalizeSeparators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/NormalizeSeparators.rst -------------------------------------------------------------------------------- /docs/source/transformers/NormalizeSettingName.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/NormalizeSettingName.rst -------------------------------------------------------------------------------- /docs/source/transformers/NormalizeTags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/NormalizeTags.rst -------------------------------------------------------------------------------- /docs/source/transformers/OrderSettings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/OrderSettings.rst -------------------------------------------------------------------------------- /docs/source/transformers/OrderSettingsSection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/OrderSettingsSection.rst -------------------------------------------------------------------------------- /docs/source/transformers/OrderTags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/OrderTags.rst -------------------------------------------------------------------------------- /docs/source/transformers/RemoveEmptySettings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/RemoveEmptySettings.rst -------------------------------------------------------------------------------- /docs/source/transformers/RenameKeywords.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/RenameKeywords.rst -------------------------------------------------------------------------------- /docs/source/transformers/RenameTestCases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/RenameTestCases.rst -------------------------------------------------------------------------------- /docs/source/transformers/RenameVariables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/RenameVariables.rst -------------------------------------------------------------------------------- /docs/source/transformers/ReplaceBreakContinue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/ReplaceBreakContinue.rst -------------------------------------------------------------------------------- /docs/source/transformers/ReplaceEmptyValues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/ReplaceEmptyValues.rst -------------------------------------------------------------------------------- /docs/source/transformers/ReplaceReturns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/ReplaceReturns.rst -------------------------------------------------------------------------------- /docs/source/transformers/ReplaceRunKeywordIf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/ReplaceRunKeywordIf.rst -------------------------------------------------------------------------------- /docs/source/transformers/ReplaceWithVAR.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/ReplaceWithVAR.rst -------------------------------------------------------------------------------- /docs/source/transformers/SmartSortKeywords.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/SmartSortKeywords.rst -------------------------------------------------------------------------------- /docs/source/transformers/SplitTooLongLine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/SplitTooLongLine.rst -------------------------------------------------------------------------------- /docs/source/transformers/Translate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/Translate.rst -------------------------------------------------------------------------------- /docs/source/transformers/disabled_hint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/disabled_hint.txt -------------------------------------------------------------------------------- /docs/source/transformers/enabled_hint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/enabled_hint.txt -------------------------------------------------------------------------------- /docs/source/transformers/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/docs/source/transformers/index.rst -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /robotidy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/__init__.py -------------------------------------------------------------------------------- /robotidy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/__main__.py -------------------------------------------------------------------------------- /robotidy/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/api.py -------------------------------------------------------------------------------- /robotidy/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/app.py -------------------------------------------------------------------------------- /robotidy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/cli.py -------------------------------------------------------------------------------- /robotidy/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/config.py -------------------------------------------------------------------------------- /robotidy/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/decorators.py -------------------------------------------------------------------------------- /robotidy/disablers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/disablers.py -------------------------------------------------------------------------------- /robotidy/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/exceptions.py -------------------------------------------------------------------------------- /robotidy/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/files.py -------------------------------------------------------------------------------- /robotidy/rich_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/rich_console.py -------------------------------------------------------------------------------- /robotidy/skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/skip.py -------------------------------------------------------------------------------- /robotidy/transformers/AddMissingEnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/AddMissingEnd.py -------------------------------------------------------------------------------- /robotidy/transformers/AlignKeywordsSection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/AlignKeywordsSection.py -------------------------------------------------------------------------------- /robotidy/transformers/AlignSettingsSection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/AlignSettingsSection.py -------------------------------------------------------------------------------- /robotidy/transformers/AlignTemplatedTestCases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/AlignTemplatedTestCases.py -------------------------------------------------------------------------------- /robotidy/transformers/AlignTestCasesSection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/AlignTestCasesSection.py -------------------------------------------------------------------------------- /robotidy/transformers/AlignVariablesSection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/AlignVariablesSection.py -------------------------------------------------------------------------------- /robotidy/transformers/DiscardEmptySections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/DiscardEmptySections.py -------------------------------------------------------------------------------- /robotidy/transformers/GenerateDocumentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/GenerateDocumentation.py -------------------------------------------------------------------------------- /robotidy/transformers/IndentNestedKeywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/IndentNestedKeywords.py -------------------------------------------------------------------------------- /robotidy/transformers/InlineIf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/InlineIf.py -------------------------------------------------------------------------------- /robotidy/transformers/MergeAndOrderSections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/MergeAndOrderSections.py -------------------------------------------------------------------------------- /robotidy/transformers/NormalizeAssignments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/NormalizeAssignments.py -------------------------------------------------------------------------------- /robotidy/transformers/NormalizeComments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/NormalizeComments.py -------------------------------------------------------------------------------- /robotidy/transformers/NormalizeNewLines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/NormalizeNewLines.py -------------------------------------------------------------------------------- /robotidy/transformers/NormalizeSectionHeaderName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/NormalizeSectionHeaderName.py -------------------------------------------------------------------------------- /robotidy/transformers/NormalizeSeparators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/NormalizeSeparators.py -------------------------------------------------------------------------------- /robotidy/transformers/NormalizeSettingName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/NormalizeSettingName.py -------------------------------------------------------------------------------- /robotidy/transformers/NormalizeTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/NormalizeTags.py -------------------------------------------------------------------------------- /robotidy/transformers/OrderSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/OrderSettings.py -------------------------------------------------------------------------------- /robotidy/transformers/OrderSettingsSection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/OrderSettingsSection.py -------------------------------------------------------------------------------- /robotidy/transformers/OrderTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/OrderTags.py -------------------------------------------------------------------------------- /robotidy/transformers/RemoveEmptySettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/RemoveEmptySettings.py -------------------------------------------------------------------------------- /robotidy/transformers/RenameKeywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/RenameKeywords.py -------------------------------------------------------------------------------- /robotidy/transformers/RenameTestCases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/RenameTestCases.py -------------------------------------------------------------------------------- /robotidy/transformers/RenameVariables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/RenameVariables.py -------------------------------------------------------------------------------- /robotidy/transformers/ReplaceBreakContinue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/ReplaceBreakContinue.py -------------------------------------------------------------------------------- /robotidy/transformers/ReplaceEmptyValues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/ReplaceEmptyValues.py -------------------------------------------------------------------------------- /robotidy/transformers/ReplaceReturns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/ReplaceReturns.py -------------------------------------------------------------------------------- /robotidy/transformers/ReplaceRunKeywordIf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/ReplaceRunKeywordIf.py -------------------------------------------------------------------------------- /robotidy/transformers/ReplaceWithVAR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/ReplaceWithVAR.py -------------------------------------------------------------------------------- /robotidy/transformers/SmartSortKeywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/SmartSortKeywords.py -------------------------------------------------------------------------------- /robotidy/transformers/SplitTooLongLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/SplitTooLongLine.py -------------------------------------------------------------------------------- /robotidy/transformers/Translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/Translate.py -------------------------------------------------------------------------------- /robotidy/transformers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/__init__.py -------------------------------------------------------------------------------- /robotidy/transformers/aligners_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/aligners_core.py -------------------------------------------------------------------------------- /robotidy/transformers/run_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/transformers/run_keywords.py -------------------------------------------------------------------------------- /robotidy/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/utils/misc.py -------------------------------------------------------------------------------- /robotidy/utils/variable_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/robotidy/utils/variable_matcher.py -------------------------------------------------------------------------------- /robotidy/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "4.18.0" 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/setup.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/README.rst -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/__init__.py -------------------------------------------------------------------------------- /tests/atest/configuration_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/configuration_files/multiple_configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/configuration_files/multiple_configs/expected/root/a/.robotidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/configuration_files/multiple_configs/expected/root/a/.robotidy -------------------------------------------------------------------------------- /tests/atest/configuration_files/multiple_configs/expected/root/a/a_test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/configuration_files/multiple_configs/expected/root/a/a_test.robot -------------------------------------------------------------------------------- /tests/atest/configuration_files/multiple_configs/expected/root/c/c_test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/configuration_files/multiple_configs/expected/root/c/c_test.robot -------------------------------------------------------------------------------- /tests/atest/configuration_files/multiple_configs/expected/root/c/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/configuration_files/multiple_configs/expected/root/c/pyproject.toml -------------------------------------------------------------------------------- /tests/atest/configuration_files/multiple_configs/expected/root/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/configuration_files/multiple_configs/expected/root/pyproject.toml -------------------------------------------------------------------------------- /tests/atest/configuration_files/multiple_configs/expected/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/configuration_files/multiple_configs/expected/test.robot -------------------------------------------------------------------------------- /tests/atest/configuration_files/multiple_configs/source/root/a/.robotidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/configuration_files/multiple_configs/source/root/a/.robotidy -------------------------------------------------------------------------------- /tests/atest/configuration_files/multiple_configs/source/root/a/a_test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/configuration_files/multiple_configs/source/root/a/a_test.robot -------------------------------------------------------------------------------- /tests/atest/configuration_files/multiple_configs/source/root/b/bb/bb_test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/configuration_files/multiple_configs/source/root/b/bb/bb_test.robot -------------------------------------------------------------------------------- /tests/atest/configuration_files/multiple_configs/source/root/c/c_test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/configuration_files/multiple_configs/source/root/c/c_test.robot -------------------------------------------------------------------------------- /tests/atest/configuration_files/multiple_configs/source/root/c/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/configuration_files/multiple_configs/source/root/c/pyproject.toml -------------------------------------------------------------------------------- /tests/atest/configuration_files/multiple_configs/source/root/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/configuration_files/multiple_configs/source/root/pyproject.toml -------------------------------------------------------------------------------- /tests/atest/configuration_files/multiple_configs/source/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/configuration_files/multiple_configs/source/test.robot -------------------------------------------------------------------------------- /tests/atest/configuration_files/multiple_configs/test_multiple_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/configuration_files/multiple_configs/test_multiple_configs.py -------------------------------------------------------------------------------- /tests/atest/transformers/AddMissingEnd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/AddMissingEnd/expected/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AddMissingEnd/expected/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AddMissingEnd/expected/test_5.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AddMissingEnd/expected/test_5.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AddMissingEnd/expected/test_selected.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AddMissingEnd/expected/test_selected.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AddMissingEnd/source/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AddMissingEnd/source/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AddMissingEnd/source/test_5.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AddMissingEnd/source/test_5.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AddMissingEnd/source/test_5_disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AddMissingEnd/source/test_5_disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AddMissingEnd/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AddMissingEnd/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/expected/blocks.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/expected/blocks.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/expected/blocks_auto.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/expected/blocks_auto.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/expected/blocks_auto_0.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/expected/blocks_auto_0.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/expected/blocks_rf5.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/expected/blocks_rf5.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/expected/groups.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/expected/groups.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/expected/non_ascii_spaces.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/expected/non_ascii_spaces.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/expected/one_column.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/expected/one_column.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/expected/overflow_first_line.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/expected/overflow_first_line.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/expected/settings.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/expected/settings.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/expected/skip_keywords.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/expected/skip_keywords.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/expected/skip_return_values.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/expected/skip_return_values.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/expected/skip_settings.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/expected/skip_settings.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/expected/too_long_line.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/expected/too_long_line.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/source/blocks.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/source/blocks.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/source/blocks_rf5.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/source/blocks_rf5.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/source/documentation.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/source/documentation.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/source/error_node.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/source/error_node.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/source/groups.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/source/groups.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/source/non_ascii_spaces.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/source/non_ascii_spaces.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/source/one_column.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/source/one_column.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/source/overflow_first_line.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/source/overflow_first_line.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/source/settings.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/source/settings.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/source/simple.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/source/simple.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/source/skip_keywords.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/source/skip_keywords.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/source/skip_return_values.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/source/skip_return_values.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/source/too_long_line.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/source/too_long_line.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignKeywordsSection/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignKeywordsSection/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/expected/all_columns.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/expected/all_columns.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/expected/all_columns_fixed.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/expected/all_columns_fixed.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/expected/argument_indents.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/expected/argument_indents.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/expected/blank_line_doc.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/expected/blank_line_doc.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/expected/empty_lines.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/expected/empty_lines.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/expected/multiline_keywords.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/expected/multiline_keywords.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/expected/selected_part.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/expected/selected_part.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/expected/selected_whole.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/expected/selected_whole.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/expected/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/expected/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/expected/test_disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/expected/test_disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/expected/test_fixed.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/expected/test_fixed.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/expected/test_min_width.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/expected/test_min_width.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/expected/three_columns.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/expected/three_columns.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/source/argument_indents.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/source/argument_indents.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/source/blank_line_doc.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/source/blank_line_doc.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/source/empty_lines.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/source/empty_lines.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/source/multiline_keywords.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/source/multiline_keywords.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/source/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/source/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/source/test_disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/source/test_disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignSettingsSection/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignSettingsSection/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTemplatedTestCases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTemplatedTestCases/expected/no_header_col.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTemplatedTestCases/expected/no_header_col.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTemplatedTestCases/expected/partly_templated.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTemplatedTestCases/expected/partly_templated.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTemplatedTestCases/expected/tags_settings.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTemplatedTestCases/expected/tags_settings.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTemplatedTestCases/expected/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTemplatedTestCases/expected/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTemplatedTestCases/expected/test_fixed.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTemplatedTestCases/expected/test_fixed.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTemplatedTestCases/expected/with_settings.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTemplatedTestCases/expected/with_settings.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTemplatedTestCases/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTemplatedTestCases/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTemplatedTestCases/source/empty_line.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTemplatedTestCases/source/empty_line.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTemplatedTestCases/source/for_loops.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTemplatedTestCases/source/for_loops.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTemplatedTestCases/source/no_header_col.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTemplatedTestCases/source/no_header_col.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTemplatedTestCases/source/partly_templated.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTemplatedTestCases/source/partly_templated.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTemplatedTestCases/source/tags_settings.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTemplatedTestCases/source/tags_settings.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTemplatedTestCases/source/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTemplatedTestCases/source/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTemplatedTestCases/source/with_settings.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTemplatedTestCases/source/with_settings.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTemplatedTestCases/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTemplatedTestCases/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/expected/blocks.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/expected/blocks.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/expected/blocks_auto.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/expected/blocks_auto.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/expected/blocks_auto_0.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/expected/blocks_auto_0.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/expected/blocks_rf5.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/expected/blocks_rf5.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/expected/groups.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/expected/groups.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/expected/non_ascii_spaces.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/expected/non_ascii_spaces.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/expected/one_column.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/expected/one_column.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/expected/settings.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/expected/settings.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/expected/skip_keywords.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/expected/skip_keywords.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/source/blocks.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/source/blocks.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/source/blocks_rf5.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/source/blocks_rf5.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/source/compact_overflow_bug.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/source/compact_overflow_bug.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/source/documentation.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/source/documentation.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/source/groups.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/source/groups.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/source/non_ascii_spaces.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/source/non_ascii_spaces.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/source/one_column.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/source/one_column.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/source/overflow_first_line.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/source/overflow_first_line.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/source/settings.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/source/settings.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/source/simple.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/source/simple.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/source/skip_keywords.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/source/skip_keywords.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/source/templated.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/source/templated.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignTestCasesSection/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignTestCasesSection/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/expected/all_columns.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/expected/all_columns.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/expected/all_columns_fixed.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/expected/all_columns_fixed.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/expected/long_comment.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/expected/long_comment.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/expected/multiline_skip.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/expected/multiline_skip.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/expected/single_var.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/expected/single_var.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/expected/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/expected/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/expected/tests_2space_sep.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/expected/tests_2space_sep.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/expected/tests_disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/expected/tests_disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/expected/tests_fixed.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/expected/tests_fixed.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/expected/tests_fixed_one.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/expected/tests_fixed_one.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/expected/tests_min_width.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/expected/tests_min_width.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/expected/tests_skip.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/expected/tests_skip.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/expected/three_columns.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/expected/three_columns.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/source/align_selected.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/source/align_selected.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/source/long_comment.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/source/long_comment.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/source/multiline_skip.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/source/multiline_skip.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/source/multiline_with_blank.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/source/multiline_with_blank.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/source/optional_equal_sign.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/source/optional_equal_sign.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/source/single_var.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/source/single_var.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/source/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/source/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/source/tests_disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/source/tests_disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/AlignVariablesSection/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/AlignVariablesSection/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/DiscardEmptySections/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/DiscardEmptySections/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/DiscardEmptySections/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/ExternalTransformer/ExternalDisabledTransformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ExternalTransformer/ExternalDisabledTransformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/ExternalTransformer/ExternalTransformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ExternalTransformer/ExternalTransformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/ExternalTransformer/ExternalTransformers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ExternalTransformer/ExternalTransformers/__init__.py -------------------------------------------------------------------------------- /tests/atest/transformers/ExternalTransformer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/ExternalTransformer/expected/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ExternalTransformer/expected/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ExternalTransformer/expected/tests_lowercase.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ExternalTransformer/expected/tests_lowercase.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ExternalTransformer/expected/tests_module_load.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ExternalTransformer/expected/tests_module_load.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ExternalTransformer/source/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ExternalTransformer/source/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ExternalTransformer/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ExternalTransformer/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/GenerateDocumentation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/GenerateDocumentation/expected/overwrite.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/GenerateDocumentation/expected/overwrite.robot -------------------------------------------------------------------------------- /tests/atest/transformers/GenerateDocumentation/expected/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/GenerateDocumentation/expected/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/GenerateDocumentation/expected/test_rf4.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/GenerateDocumentation/expected/test_rf4.robot -------------------------------------------------------------------------------- /tests/atest/transformers/GenerateDocumentation/source/invalid_template.jinja: -------------------------------------------------------------------------------- 1 | {{ not_exist }} 2 | {%- for arg in keyword.arguments %} -------------------------------------------------------------------------------- /tests/atest/transformers/GenerateDocumentation/source/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/GenerateDocumentation/source/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/GenerateDocumentation/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/GenerateDocumentation/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/IndentNestedKeywords/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/IndentNestedKeywords/expected/comments.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/IndentNestedKeywords/expected/comments.robot -------------------------------------------------------------------------------- /tests/atest/transformers/IndentNestedKeywords/expected/keep_in_line.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/IndentNestedKeywords/expected/keep_in_line.robot -------------------------------------------------------------------------------- /tests/atest/transformers/IndentNestedKeywords/expected/run_keyword.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/IndentNestedKeywords/expected/run_keyword.robot -------------------------------------------------------------------------------- /tests/atest/transformers/IndentNestedKeywords/expected/settings.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/IndentNestedKeywords/expected/settings.robot -------------------------------------------------------------------------------- /tests/atest/transformers/IndentNestedKeywords/expected/split_and_indent.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/IndentNestedKeywords/expected/split_and_indent.robot -------------------------------------------------------------------------------- /tests/atest/transformers/IndentNestedKeywords/expected/too_long_line.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/IndentNestedKeywords/expected/too_long_line.robot -------------------------------------------------------------------------------- /tests/atest/transformers/IndentNestedKeywords/source/comments.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/IndentNestedKeywords/source/comments.robot -------------------------------------------------------------------------------- /tests/atest/transformers/IndentNestedKeywords/source/run_keyword.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/IndentNestedKeywords/source/run_keyword.robot -------------------------------------------------------------------------------- /tests/atest/transformers/IndentNestedKeywords/source/settings.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/IndentNestedKeywords/source/settings.robot -------------------------------------------------------------------------------- /tests/atest/transformers/IndentNestedKeywords/source/too_long_line.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/IndentNestedKeywords/source/too_long_line.robot -------------------------------------------------------------------------------- /tests/atest/transformers/IndentNestedKeywords/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/IndentNestedKeywords/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/InlineIf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/InlineIf/expected/one_if_2spaces.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/InlineIf/expected/one_if_2spaces.robot -------------------------------------------------------------------------------- /tests/atest/transformers/InlineIf/expected/one_if_4spaces.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/InlineIf/expected/one_if_4spaces.robot -------------------------------------------------------------------------------- /tests/atest/transformers/InlineIf/expected/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/InlineIf/expected/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/InlineIf/expected/test_disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/InlineIf/expected/test_disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/InlineIf/expected/test_skip_else.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/InlineIf/expected/test_skip_else.robot -------------------------------------------------------------------------------- /tests/atest/transformers/InlineIf/source/invalid_if.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/InlineIf/source/invalid_if.robot -------------------------------------------------------------------------------- /tests/atest/transformers/InlineIf/source/invalid_inline_if.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/InlineIf/source/invalid_inline_if.robot -------------------------------------------------------------------------------- /tests/atest/transformers/InlineIf/source/one_if.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/InlineIf/source/one_if.robot -------------------------------------------------------------------------------- /tests/atest/transformers/InlineIf/source/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/InlineIf/source/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/InlineIf/source/test_disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/InlineIf/source/test_disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/InlineIf/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/InlineIf/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/MergeAndOrderSections/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/MergeAndOrderSections/expected/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/MergeAndOrderSections/expected/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/MergeAndOrderSections/expected/empty_section.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/MergeAndOrderSections/expected/empty_section.robot -------------------------------------------------------------------------------- /tests/atest/transformers/MergeAndOrderSections/expected/nested_blocks.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/MergeAndOrderSections/expected/nested_blocks.robot -------------------------------------------------------------------------------- /tests/atest/transformers/MergeAndOrderSections/expected/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/MergeAndOrderSections/expected/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/MergeAndOrderSections/expected/translated.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/MergeAndOrderSections/expected/translated.robot -------------------------------------------------------------------------------- /tests/atest/transformers/MergeAndOrderSections/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/MergeAndOrderSections/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/MergeAndOrderSections/source/empty_section.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/MergeAndOrderSections/source/empty_section.robot -------------------------------------------------------------------------------- /tests/atest/transformers/MergeAndOrderSections/source/inline_if.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/MergeAndOrderSections/source/inline_if.robot -------------------------------------------------------------------------------- /tests/atest/transformers/MergeAndOrderSections/source/invalid.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/MergeAndOrderSections/source/invalid.robot -------------------------------------------------------------------------------- /tests/atest/transformers/MergeAndOrderSections/source/nested_block_for.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/MergeAndOrderSections/source/nested_block_for.robot -------------------------------------------------------------------------------- /tests/atest/transformers/MergeAndOrderSections/source/nested_blocks.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/MergeAndOrderSections/source/nested_blocks.robot -------------------------------------------------------------------------------- /tests/atest/transformers/MergeAndOrderSections/source/order.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/MergeAndOrderSections/source/order.robot -------------------------------------------------------------------------------- /tests/atest/transformers/MergeAndOrderSections/source/parsing_error.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/MergeAndOrderSections/source/parsing_error.robot -------------------------------------------------------------------------------- /tests/atest/transformers/MergeAndOrderSections/source/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/MergeAndOrderSections/source/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/MergeAndOrderSections/source/translated.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/MergeAndOrderSections/source/translated.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeAssignments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeAssignments/expected/common_remove.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeAssignments/expected/common_remove.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeAssignments/expected/equal_sign.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeAssignments/expected/equal_sign.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeAssignments/expected/remove.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeAssignments/expected/remove.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeAssignments/source/common_equal_sign.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeAssignments/source/common_equal_sign.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeAssignments/source/common_remove.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeAssignments/source/common_remove.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeAssignments/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeAssignments/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeAssignments/source/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeAssignments/source/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeAssignments/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeAssignments/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeComments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeComments/expected/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeComments/expected/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeComments/source/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeComments/source/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeComments/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeComments/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/expected/blocks.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeNewLines/expected/blocks.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/expected/disablers_selected.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeNewLines/expected/disablers_selected.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/expected/inline_if.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeNewLines/expected/inline_if.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/expected/multiline.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeNewLines/expected/multiline.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/expected/templated_tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeNewLines/expected/templated_tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/expected/test_case_last.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeNewLines/expected/test_case_last.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/expected/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeNewLines/expected/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/source/blocks.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeNewLines/source/blocks.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeNewLines/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/source/disablers_selected.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeNewLines/source/disablers_selected.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/source/inline_if_0_lines.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeNewLines/source/inline_if_0_lines.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/source/inline_if_1_lines.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeNewLines/source/inline_if_1_lines.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/source/inline_if_2_lines.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeNewLines/source/inline_if_2_lines.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/source/multiline.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeNewLines/source/multiline.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/source/templated_tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeNewLines/source/templated_tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/source/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeNewLines/source/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeNewLines/test_normalize_new_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeNewLines/test_normalize_new_lines.py -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSectionHeaderName/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSectionHeaderName/expected/selected.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSectionHeaderName/expected/selected.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSectionHeaderName/expected/task.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSectionHeaderName/expected/task.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSectionHeaderName/expected/task2.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSectionHeaderName/expected/task2.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSectionHeaderName/expected/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSectionHeaderName/expected/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSectionHeaderName/expected/translated.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSectionHeaderName/expected/translated.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSectionHeaderName/expected/uppercase.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSectionHeaderName/expected/uppercase.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSectionHeaderName/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSectionHeaderName/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSectionHeaderName/source/task.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSectionHeaderName/source/task.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSectionHeaderName/source/task2.robot: -------------------------------------------------------------------------------- 1 | *** Settings *** 2 | 3 | * Task * -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSectionHeaderName/source/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSectionHeaderName/source/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSectionHeaderName/source/translated.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSectionHeaderName/source/translated.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/expected/bug390.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/expected/bug390.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/expected/flatten.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/expected/flatten.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/expected/flatten_rf4.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/expected/flatten_rf4.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/expected/groups.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/expected/groups.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/expected/inline_if_flatten.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/expected/inline_if_flatten.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/expected/pipes.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/expected/pipes.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/expected/rf5_syntax.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/expected/rf5_syntax.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/expected/skip_none.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/expected/skip_none.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/expected/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/expected/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/expected/test_8spaces.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/expected/test_8spaces.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/expected/test_skip_keyword.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/expected/test_skip_keyword.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/source/bug390.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/source/bug390.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/source/comments.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/source/comments.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/source/continuation_indent.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/source/continuation_indent.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/source/disablers2.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/source/disablers2.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/source/disablers3.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/source/disablers3.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/source/disablers4.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/source/disablers4.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/source/flatten.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/source/flatten.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/source/groups.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/source/groups.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/source/inline_if.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/source/inline_if.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/source/pipes.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/source/pipes.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/source/rf5_syntax.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/source/rf5_syntax.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/source/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/source/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSeparators/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSeparators/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSettingName/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSettingName/expected/rf6.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSettingName/expected/rf6.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSettingName/expected/selected.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSettingName/expected/selected.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSettingName/expected/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSettingName/expected/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSettingName/expected/translated.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSettingName/expected/translated.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSettingName/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSettingName/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSettingName/source/rf6.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSettingName/source/rf6.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSettingName/source/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSettingName/source/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSettingName/source/translated.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSettingName/source/translated.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeSettingName/test_normalize_setting_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeSettingName/test_normalize_setting_name.py -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/expected/duplicates.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/expected/duplicates.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/expected/lowercase.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/expected/lowercase.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/expected/preserve_format_default.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/expected/preserve_format_default.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/expected/preserve_format_enabled.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/expected/preserve_format_enabled.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/expected/spacing_2indent_2spaces.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/expected/spacing_2indent_2spaces.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/expected/spacing_2indent_4spaces.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/expected/spacing_2indent_4spaces.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/expected/spacing_4indent_2spaces.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/expected/spacing_4indent_2spaces.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/expected/spacing_4indent_4spaces.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/expected/spacing_4indent_4spaces.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/expected/titlecase.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/expected/titlecase.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/expected/uppercase.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/expected/uppercase.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/source/disablers2.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/source/disablers2.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/source/disablers3.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/source/disablers3.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/source/disablers4.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/source/disablers4.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/source/duplicates.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/source/duplicates.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/source/preserve_format.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/source/preserve_format.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/source/rf6.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/source/rf6.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/source/spacing.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/source/spacing.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/source/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/source/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/source/variables_in_tags.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/source/variables_in_tags.robot -------------------------------------------------------------------------------- /tests/atest/transformers/NormalizeTags/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/NormalizeTags/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettings/expected/custom_order_all_end.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettings/expected/custom_order_all_end.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettings/expected/custom_order_default.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettings/expected/custom_order_default.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettings/expected/stick_comments.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettings/expected/stick_comments.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettings/expected/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettings/expected/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettings/expected/test_pre_rf7.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettings/expected/test_pre_rf7.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettings/expected/translated.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettings/expected/translated.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettings/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettings/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettings/source/stick_comments.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettings/source/stick_comments.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettings/source/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettings/source/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettings/source/translated.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettings/source/translated.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettings/test_order_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettings/test_order_settings.py -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/expected/last_section.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettingsSection/expected/last_section.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/expected/missing_group.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettingsSection/expected/missing_group.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/expected/parsing_error.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettingsSection/expected/parsing_error.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/expected/remote_library.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettingsSection/expected/remote_library.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/expected/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettingsSection/expected/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/expected/test_0_newline.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettingsSection/expected/test_0_newline.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/expected/test_2_newline.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettingsSection/expected/test_2_newline.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/expected/test_group_order.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettingsSection/expected/test_group_order.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/expected/test_tags.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettingsSection/expected/test_tags.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettingsSection/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/source/just_comment.robot: -------------------------------------------------------------------------------- 1 | *** Settings *** 2 | # comment 3 | -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/source/last_section.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettingsSection/source/last_section.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/source/missing_group.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettingsSection/source/missing_group.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/source/parsing_error.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettingsSection/source/parsing_error.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/source/remote_library.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettingsSection/source/remote_library.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/source/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettingsSection/source/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/source/test_tags.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettingsSection/source/test_tags.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderSettingsSection/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderSettingsSection/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/OrderTags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/OrderTags/expected/case_insensitive.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderTags/expected/case_insensitive.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderTags/expected/case_insensitive_reverse.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderTags/expected/case_insensitive_reverse.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderTags/expected/case_sensitive.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderTags/expected/case_sensitive.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderTags/expected/case_sensitive_reverse.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderTags/expected/case_sensitive_reverse.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderTags/expected/default.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderTags/expected/default.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderTags/expected/default_tags_false.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderTags/expected/default_tags_false.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderTags/expected/force_tags_false.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderTags/expected/force_tags_false.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderTags/expected/test_tags.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderTags/expected/test_tags.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderTags/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderTags/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderTags/source/test_tags.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderTags/source/test_tags.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderTags/source/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderTags/source/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/OrderTags/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/OrderTags/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/RemoveEmptySettings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/RemoveEmptySettings/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RemoveEmptySettings/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RemoveEmptySettings/source/empty.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RemoveEmptySettings/source/empty.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RemoveEmptySettings/source/overwritten.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RemoveEmptySettings/source/overwritten.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RemoveEmptySettings/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RemoveEmptySettings/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/expected/bug537_538.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/expected/bug537_538.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/expected/capitalize_first.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/expected/capitalize_first.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/expected/embedded_variables.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/expected/embedded_variables.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/expected/no_title_case.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/expected/no_title_case.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/expected/rename_pattern_partial.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/expected/rename_pattern_partial.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/expected/rename_pattern_whole.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/expected/rename_pattern_whole.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/expected/run_keywords.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/expected/run_keywords.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/expected/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/expected/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/expected/test_transform_library.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/expected/test_transform_library.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/expected/with_library_name.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/expected/with_library_name.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/expected/with_underscores.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/expected/with_underscores.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/source/bug537_538.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/source/bug537_538.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/source/embedded_variables.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/source/embedded_variables.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/source/no_title_case.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/source/no_title_case.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/source/run_keywords.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/source/run_keywords.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/source/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/source/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/source/with_library_name.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/source/with_library_name.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameKeywords/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameKeywords/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/RenameTestCases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/RenameTestCases/expected/replace_pattern_empty.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameTestCases/expected/replace_pattern_empty.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameTestCases/expected/selected.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameTestCases/expected/selected.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameTestCases/expected/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameTestCases/expected/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameTestCases/expected/upper_case.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameTestCases/expected/upper_case.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameTestCases/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameTestCases/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameTestCases/source/empty_test_name.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameTestCases/source/empty_test_name.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameTestCases/source/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameTestCases/source/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameTestCases/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameTestCases/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/expected/VAR_syntax.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/expected/VAR_syntax.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/expected/configure_ignore_vars.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/expected/configure_ignore_vars.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/expected/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/expected/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/expected/equal_sign_in_section.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/expected/equal_sign_in_section.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/expected/excluded_vars.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/expected/excluded_vars.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/expected/groups.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/expected/groups.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/expected/if_while_conditions.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/expected/if_while_conditions.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/expected/inline_if.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/expected/inline_if.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/expected/math_operations.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/expected/math_operations.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/expected/return_and_set_global.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/expected/return_and_set_global.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/expected/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/expected/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/expected/test_ignore_unknown.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/expected/test_ignore_unknown.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/expected/test_lower.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/expected/test_lower.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/expected/test_template.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/expected/test_template.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/expected/try_except.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/expected/try_except.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/source/VAR_syntax.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/source/VAR_syntax.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/source/equal_sign_in_section.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/source/equal_sign_in_section.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/source/excluded_vars.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/source/excluded_vars.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/source/groups.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/source/groups.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/source/if_while_conditions.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/source/if_while_conditions.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/source/inline_if.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/source/inline_if.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/source/math_operations.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/source/math_operations.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/source/return_and_set_global.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/source/return_and_set_global.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/source/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/source/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/source/test_template.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/source/test_template.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/source/try_except.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/source/try_except.robot -------------------------------------------------------------------------------- /tests/atest/transformers/RenameVariables/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/RenameVariables/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceBreakContinue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceBreakContinue/expected/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceBreakContinue/expected/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceBreakContinue/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceBreakContinue/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceBreakContinue/source/errors.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceBreakContinue/source/errors.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceBreakContinue/source/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceBreakContinue/source/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceBreakContinue/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceBreakContinue/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceEmptyValues/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceEmptyValues/expected/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceEmptyValues/expected/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceEmptyValues/source/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceEmptyValues/source/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceEmptyValues/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceEmptyValues/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceReturns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceReturns/expected/return_from_keyword.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceReturns/expected/return_from_keyword.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceReturns/expected/return_from_keyword_if.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceReturns/expected/return_from_keyword_if.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceReturns/expected/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceReturns/expected/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceReturns/expected/test_selected.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceReturns/expected/test_selected.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceReturns/source/errors.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceReturns/source/errors.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceReturns/source/return_from_keyword.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceReturns/source/return_from_keyword.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceReturns/source/return_from_keyword_if.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceReturns/source/return_from_keyword_if.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceReturns/source/run_keyword_and_return.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceReturns/source/run_keyword_and_return.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceReturns/source/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceReturns/source/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceReturns/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceReturns/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceRunKeywordIf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceRunKeywordIf/expected/invalid_data.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceRunKeywordIf/expected/invalid_data.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceRunKeywordIf/expected/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceRunKeywordIf/expected/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceRunKeywordIf/expected/tests_selected.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceRunKeywordIf/expected/tests_selected.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceRunKeywordIf/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceRunKeywordIf/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceRunKeywordIf/source/golden.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceRunKeywordIf/source/golden.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceRunKeywordIf/source/invalid_data.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceRunKeywordIf/source/invalid_data.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceRunKeywordIf/source/keyword_name_in_var.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceRunKeywordIf/source/keyword_name_in_var.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceRunKeywordIf/source/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceRunKeywordIf/source/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceRunKeywordIf/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceRunKeywordIf/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceWithVAR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceWithVAR/expected/explicit_local.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceWithVAR/expected/explicit_local.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceWithVAR/expected/replace_catenate_false.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceWithVAR/expected/replace_catenate_false.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceWithVAR/expected/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceWithVAR/expected/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceWithVAR/expected/too_long.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceWithVAR/expected/too_long.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceWithVAR/source/invalid_inline_if.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceWithVAR/source/invalid_inline_if.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceWithVAR/source/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceWithVAR/source/test.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceWithVAR/source/too_long.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceWithVAR/source/too_long.robot -------------------------------------------------------------------------------- /tests/atest/transformers/ReplaceWithVAR/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/ReplaceWithVAR/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/SmartSortKeywords/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/SmartSortKeywords/expected/multiple_sections.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SmartSortKeywords/expected/multiple_sections.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SmartSortKeywords/expected/sort_.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SmartSortKeywords/expected/sort_.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SmartSortKeywords/expected/sort_ci.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SmartSortKeywords/expected/sort_ci.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SmartSortKeywords/expected/sort_ci_ilu.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SmartSortKeywords/expected/sort_ci_ilu.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SmartSortKeywords/expected/sort_ci_ilu_iou.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SmartSortKeywords/expected/sort_ci_ilu_iou.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SmartSortKeywords/expected/sort_ci_iou.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SmartSortKeywords/expected/sort_ci_iou.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SmartSortKeywords/expected/sort_ilu.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SmartSortKeywords/expected/sort_ilu.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SmartSortKeywords/expected/sort_ilu_iou.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SmartSortKeywords/expected/sort_ilu_iou.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SmartSortKeywords/expected/sort_iou.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SmartSortKeywords/expected/sort_iou.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SmartSortKeywords/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SmartSortKeywords/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SmartSortKeywords/source/empty_before_fist_keyword.robot: -------------------------------------------------------------------------------- 1 | *** Keywords *** 2 | 3 | # My Comment 4 | my_kw -------------------------------------------------------------------------------- /tests/atest/transformers/SmartSortKeywords/source/multiple_sections.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SmartSortKeywords/source/multiple_sections.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SmartSortKeywords/source/sort_input.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SmartSortKeywords/source/sort_input.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SmartSortKeywords/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SmartSortKeywords/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/expected/VAR_syntax.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/expected/VAR_syntax.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/expected/align_new_line.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/expected/align_new_line.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/expected/align_new_line_all.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/expected/align_new_line_all.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/expected/comments.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/expected/comments.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/expected/settings_skip_tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/expected/settings_skip_tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/expected/skip_keywords.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/expected/skip_keywords.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/expected/split_on_every_arg.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/expected/split_on_every_arg.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/expected/split_on_every_arg_4.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/expected/split_on_every_arg_4.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/expected/variables_feed.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/expected/variables_feed.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/source/VAR_syntax.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/source/VAR_syntax.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/source/align_new_line.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/source/align_new_line.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/source/comments.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/source/comments.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/source/continuation_indent.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/source/continuation_indent.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/source/disablers.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/source/disablers.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/source/multiple_assignments.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/source/multiple_assignments.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/source/settings.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/source/settings.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/source/tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/source/tests.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/source/variables.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/source/variables.robot -------------------------------------------------------------------------------- /tests/atest/transformers/SplitTooLongLine/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/SplitTooLongLine/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/Translate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/Translate/expected/add_lang_header/en_header.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/Translate/expected/add_lang_header/en_header.robot -------------------------------------------------------------------------------- /tests/atest/transformers/Translate/expected/bdd/pl.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/Translate/expected/bdd/pl.robot -------------------------------------------------------------------------------- /tests/atest/transformers/Translate/expected/bdd/pl_alternative.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/Translate/expected/bdd/pl_alternative.robot -------------------------------------------------------------------------------- /tests/atest/transformers/Translate/expected/bdd/uk.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/Translate/expected/bdd/uk.robot -------------------------------------------------------------------------------- /tests/atest/transformers/Translate/expected/de.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/Translate/expected/de.robot -------------------------------------------------------------------------------- /tests/atest/transformers/Translate/expected/en.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/Translate/expected/en.robot -------------------------------------------------------------------------------- /tests/atest/transformers/Translate/expected/en_with_pl_header.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/Translate/expected/en_with_pl_header.robot -------------------------------------------------------------------------------- /tests/atest/transformers/Translate/expected/pl.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/Translate/expected/pl.robot -------------------------------------------------------------------------------- /tests/atest/transformers/Translate/source/add_lang_header/empty.robot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atest/transformers/Translate/source/add_lang_header/en_header.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/Translate/source/add_lang_header/en_header.robot -------------------------------------------------------------------------------- /tests/atest/transformers/Translate/source/bdd/en_and_pl.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/Translate/source/bdd/en_and_pl.robot -------------------------------------------------------------------------------- /tests/atest/transformers/Translate/source/en.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/Translate/source/en.robot -------------------------------------------------------------------------------- /tests/atest/transformers/Translate/source/pl.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/Translate/source/pl.robot -------------------------------------------------------------------------------- /tests/atest/transformers/Translate/source/pl_and_de.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/Translate/source/pl_and_de.robot -------------------------------------------------------------------------------- /tests/atest/transformers/Translate/source/pl_language_header.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/Translate/source/pl_language_header.robot -------------------------------------------------------------------------------- /tests/atest/transformers/Translate/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/atest/transformers/Translate/test_transformer.py -------------------------------------------------------------------------------- /tests/atest/transformers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/e2e/test_data/too_long_variable.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/e2e/test_data/too_long_variable.robot -------------------------------------------------------------------------------- /tests/e2e/test_transform_stability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/e2e/test_transform_stability.py -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | addopts = -p no:warnings 3 | -------------------------------------------------------------------------------- /tests/rf_versions_matrix/rf4/requirements.txt: -------------------------------------------------------------------------------- 1 | robotframework==4.1.3 -------------------------------------------------------------------------------- /tests/rf_versions_matrix/rf5/requirements.txt: -------------------------------------------------------------------------------- 1 | robotframework==5.0.1 -------------------------------------------------------------------------------- /tests/rf_versions_matrix/rf6/requirements.txt: -------------------------------------------------------------------------------- 1 | robotframework==6.1.1 2 | -------------------------------------------------------------------------------- /tests/rf_versions_matrix/rf7/requirements.txt: -------------------------------------------------------------------------------- 1 | robotframework==7.2 -------------------------------------------------------------------------------- /tests/utest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utest/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/test_api.py -------------------------------------------------------------------------------- /tests/utest/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/test_cli.py -------------------------------------------------------------------------------- /tests/utest/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/test_config.py -------------------------------------------------------------------------------- /tests/utest/test_disablers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/test_disablers.py -------------------------------------------------------------------------------- /tests/utest/test_load_transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/test_load_transformers.py -------------------------------------------------------------------------------- /tests/utest/test_skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/test_skip.py -------------------------------------------------------------------------------- /tests/utest/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/test_utils.py -------------------------------------------------------------------------------- /tests/utest/testdata/auto_line_sep/.gitattributes: -------------------------------------------------------------------------------- 1 | *.robot -text -------------------------------------------------------------------------------- /tests/utest/testdata/auto_line_sep/cr.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/auto_line_sep/cr.robot -------------------------------------------------------------------------------- /tests/utest/testdata/auto_line_sep/crlf.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/auto_line_sep/crlf.robot -------------------------------------------------------------------------------- /tests/utest/testdata/auto_line_sep/crlf_mixed.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/auto_line_sep/crlf_mixed.robot -------------------------------------------------------------------------------- /tests/utest/testdata/auto_line_sep/empty.robot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utest/testdata/auto_line_sep/lf.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/auto_line_sep/lf.robot -------------------------------------------------------------------------------- /tests/utest/testdata/check/golden.robot: -------------------------------------------------------------------------------- 1 | *** Settings *** 2 | Test Template Keyword -------------------------------------------------------------------------------- /tests/utest/testdata/check/not_golden.robot: -------------------------------------------------------------------------------- 1 | *** settings *** 2 | Test Template Keyword -------------------------------------------------------------------------------- /tests/utest/testdata/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/config.txt -------------------------------------------------------------------------------- /tests/utest/testdata/config/robotidy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/config/robotidy.toml -------------------------------------------------------------------------------- /tests/utest/testdata/config_with_custom_transformers/CustomTransformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/config_with_custom_transformers/CustomTransformer.py -------------------------------------------------------------------------------- /tests/utest/testdata/config_with_custom_transformers/custom_transformers.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/config_with_custom_transformers/custom_transformers.toml -------------------------------------------------------------------------------- /tests/utest/testdata/config_with_custom_transformers/load_transformers.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/config_with_custom_transformers/load_transformers.toml -------------------------------------------------------------------------------- /tests/utest/testdata/disablers/empty.robot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utest/testdata/disablers/file_disabled.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/disablers/file_disabled.robot -------------------------------------------------------------------------------- /tests/utest/testdata/disablers/file_disabled_and_enabled.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/disablers/file_disabled_and_enabled.robot -------------------------------------------------------------------------------- /tests/utest/testdata/disablers/file_disabled_enabled_in_comments.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/disablers/file_disabled_enabled_in_comments.robot -------------------------------------------------------------------------------- /tests/utest/testdata/disablers/file_disabled_in_comments.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/disablers/file_disabled_in_comments.robot -------------------------------------------------------------------------------- /tests/utest/testdata/disablers/file_disabled_in_comments_no_header.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/disablers/file_disabled_in_comments_no_header.robot -------------------------------------------------------------------------------- /tests/utest/testdata/disablers/file_disabled_in_selected.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/disablers/file_disabled_in_selected.robot -------------------------------------------------------------------------------- /tests/utest/testdata/disablers/open_disabler_in_section.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/disablers/open_disabler_in_section.robot -------------------------------------------------------------------------------- /tests/utest/testdata/disablers/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/disablers/test.robot -------------------------------------------------------------------------------- /tests/utest/testdata/empty_pyproject1/pyproject.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utest/testdata/empty_pyproject2/pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.robocop] -------------------------------------------------------------------------------- /tests/utest/testdata/gitignore/.gitignore: -------------------------------------------------------------------------------- 1 | test2.robot 2 | repo/ -------------------------------------------------------------------------------- /tests/utest/testdata/gitignore/nested/test.robot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utest/testdata/gitignore/nested/test2.robot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utest/testdata/gitignore/test.resource: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utest/testdata/gitignore/test.robot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utest/testdata/gitignore/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utest/testdata/gitignore/test2.robot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utest/testdata/invalid_options_config/pyproject_confgure.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/invalid_options_config/pyproject_confgure.toml -------------------------------------------------------------------------------- /tests/utest/testdata/invalid_options_config/pyproject_idontexist.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/invalid_options_config/pyproject_idontexist.toml -------------------------------------------------------------------------------- /tests/utest/testdata/invalid_pyproject/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/invalid_pyproject/pyproject.toml -------------------------------------------------------------------------------- /tests/utest/testdata/line_sep/expected.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/line_sep/expected.robot -------------------------------------------------------------------------------- /tests/utest/testdata/line_sep/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/line_sep/test.robot -------------------------------------------------------------------------------- /tests/utest/testdata/nested/nested/deeper/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/nested/nested/deeper/test.robot -------------------------------------------------------------------------------- /tests/utest/testdata/nested/robotidy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/nested/robotidy.toml -------------------------------------------------------------------------------- /tests/utest/testdata/only_pyproject/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/only_pyproject/pyproject.toml -------------------------------------------------------------------------------- /tests/utest/testdata/pyproject_with_src/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/pyproject_with_src/pyproject.toml -------------------------------------------------------------------------------- /tests/utest/testdata/pyproject_with_src/resources/test.robot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utest/testdata/pyproject_with_src/test.robot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utest/testdata/pyproject_with_src/test3.robot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utest/testdata/read_only/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/testdata/read_only/test.robot -------------------------------------------------------------------------------- /tests/utest/testdata/with_git_dir/project_a/test.robot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utest/testdata/with_git_dir/pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.robotidy] 2 | overwrite = false -------------------------------------------------------------------------------- /tests/utest/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utest/utils.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/tests/utils.py -------------------------------------------------------------------------------- /utils/new_transformer_templates/docs.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/utils/new_transformer_templates/docs.template -------------------------------------------------------------------------------- /utils/new_transformer_templates/test_transformer.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/utils/new_transformer_templates/test_transformer.template -------------------------------------------------------------------------------- /utils/new_transformer_templates/transformer.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/utils/new_transformer_templates/transformer.template -------------------------------------------------------------------------------- /utils/release_docs_templates/new_release.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/robotframework-tidy/HEAD/utils/release_docs_templates/new_release.template --------------------------------------------------------------------------------