LICENSE
README.md
pyproject.toml
src/linti/__init__.py
src/linti/config.py
src/linti.egg-info/PKG-INFO
src/linti.egg-info/SOURCES.txt
src/linti.egg-info/dependency_links.txt
src/linti.egg-info/entry_points.txt
src/linti.egg-info/requires.txt
src/linti.egg-info/top_level.txt
src/linti/cli/__init__.py
src/linti/cli/auto_fixer.py
src/linti/cli/config_loader.py
src/linti/cli/file_linter.py
src/linti/cli/issue_reporter.py
src/linti/cli/main.py
src/linti/cli/rule_explainer.py
src/linti/lexer/__init__.py
src/linti/lexer/lexer.py
src/linti/lexer/token.py
src/linti/lexer/token_window.py
src/linti/linter/__init__.py
src/linti/linter/lint_context.py
src/linti/linter/lint_issue.py
src/linti/linter/linter.py
src/linti/linter/noqa.py
src/linti/loader/__init__.py
src/linti/loader/base.py
src/linti/loader/ti_loader.py
src/linti/loader/yaml_loader.py
src/linti/parser/ast.py
src/linti/parser/parser.py
src/linti/rules/Rule.py
src/linti/rules/__init__.py
src/linti/rules/rule_factory.py
src/linti/rules/documentation/__init__.py
src/linti/rules/documentation/docstring_region_rule.py
src/linti/rules/format/__init__.py
src/linti/rules/format/indentation_rule.py
src/linti/rules/format/keyword_casing_rule.py
src/linti/rules/format/newline_per_statement_rule.py
src/linti/rules/format/no_multiple_spaces_rule.py
src/linti/rules/format/no_space_before_semicolon_rule.py
src/linti/rules/format/no_trailing_whitespace_rule.py
src/linti/rules/format/one_space_inside_parentheses_rule.py
src/linti/rules/format/whitespace_after_comma_rule.py
src/linti/rules/format/whitespace_around_operators_rule.py
src/linti/rules/naming/__init__.py
src/linti/rules/naming/naming_rule.py
src/linti/rules/naming/parameter_naming_rule.py
src/linti/rules/naming/variable_naming_rule.py
src/linti/rules/semantic/__init__.py
src/linti/rules/semantic/constant_rule.py
src/linti/rules/semantic/docstring_region_rule.py
src/linti/rules/semantic/execute_command_rule.py
src/linti/rules/semantic/item_skip_rule.py
src/linti/rules/semantic/odbc_open_parameter_rule.py
src/linti/rules/semantic/process_call_literal_rule.py
src/linti/rules/semantic/process_quit_rule.py
src/linti/rules/semantic/readonly_parameter_variable_rule.py
src/linti/semantic/type_inference.py
tests/test_auto_fixer.py
tests/test_block_context.py
tests/test_block_stack.py
tests/test_config_find_and_load.py
tests/test_constant_rule.py
tests/test_docstring_region_rule.py
tests/test_execute_command_rule.py
tests/test_indentation_rule.py
tests/test_issue_reporter.py
tests/test_item_skip_rule.py
tests/test_keyword_casing.py
tests/test_lexer.py
tests/test_linter.py
tests/test_loop_counter_rule.py
tests/test_newline_per_statement_rule.py
tests/test_noqa.py
tests/test_odbc_open_parameter_rule.py
tests/test_parameter_naming_rule.py
tests/test_parser.py
tests/test_predefined_variables.py
tests/test_process_call_literal_rule.py
tests/test_process_quit_rule.py
tests/test_readonly_parameter_variable_rule.py
tests/test_resilient.py
tests/test_select_rules.py
tests/test_tokenwindow.py
tests/test_type_inference.py
tests/test_variable_naming_rule.py
tests/test_whitespace_rules.py
tests/test_yaml_loader.py