linthis 0.0.9__tar.gz → 0.0.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {linthis-0.0.9 → linthis-0.0.11}/.gitignore +1 -0
- linthis-0.0.11/.readthedocs.yaml +13 -0
- linthis-0.0.11/Cargo.lock +3044 -0
- {linthis-0.0.9 → linthis-0.0.11}/Cargo.toml +20 -1
- {linthis-0.0.9 → linthis-0.0.11}/PKG-INFO +1 -1
- linthis-0.0.11/docs/development/changelog.md +58 -0
- linthis-0.0.11/docs/development/contributing.md +132 -0
- linthis-0.0.11/docs/features/auto-sync.md +226 -0
- linthis-0.0.11/docs/features/git-hooks.md +368 -0
- linthis-0.0.11/docs/features/plugins.md +363 -0
- linthis-0.0.11/docs/features/self-update.md +239 -0
- linthis-0.0.11/docs/features/watch-mode.md +78 -0
- linthis-0.0.11/docs/getting-started/configuration.md +141 -0
- linthis-0.0.11/docs/getting-started/installation.md +63 -0
- linthis-0.0.11/docs/getting-started/quickstart.md +111 -0
- linthis-0.0.11/docs/index.md +48 -0
- linthis-0.0.11/docs/languages/cpp.md +179 -0
- linthis-0.0.11/docs/languages/csharp.md +171 -0
- linthis-0.0.11/docs/languages/dart.md +154 -0
- linthis-0.0.11/docs/languages/go.md +141 -0
- linthis-0.0.11/docs/languages/index.md +74 -0
- linthis-0.0.11/docs/languages/java.md +134 -0
- linthis-0.0.11/docs/languages/javascript.md +136 -0
- linthis-0.0.11/docs/languages/kotlin.md +151 -0
- linthis-0.0.11/docs/languages/lua.md +159 -0
- linthis-0.0.11/docs/languages/objc.md +133 -0
- linthis-0.0.11/docs/languages/php.md +137 -0
- linthis-0.0.11/docs/languages/python.md +148 -0
- linthis-0.0.11/docs/languages/ruby.md +119 -0
- linthis-0.0.11/docs/languages/rust.md +121 -0
- linthis-0.0.11/docs/languages/scala.md +163 -0
- linthis-0.0.11/docs/languages/shell.md +118 -0
- linthis-0.0.11/docs/languages/swift.md +163 -0
- linthis-0.0.11/docs/languages/typescript.md +204 -0
- linthis-0.0.11/docs/reference/cli.md +299 -0
- linthis-0.0.11/docs/reference/configuration.md +500 -0
- linthis-0.0.11/docs/requirements.txt +3 -0
- linthis-0.0.11/mkdocs.yml +78 -0
- {linthis-0.0.9 → linthis-0.0.11}/pyproject.toml +1 -1
- linthis-0.0.11/src/checkers/csharp.rs +250 -0
- linthis-0.0.11/src/checkers/mod.rs +105 -0
- linthis-0.0.11/src/checkers/php.rs +198 -0
- linthis-0.0.11/src/checkers/ruby.rs +220 -0
- linthis-0.0.11/src/checkers/scala.rs +189 -0
- linthis-0.0.11/src/checkers/shell.rs +208 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/cli/commands.rs +149 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/cli/doctor.rs +36 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/cli/mod.rs +4 -0
- linthis-0.0.11/src/cli/report.rs +226 -0
- linthis-0.0.11/src/cli/watch.rs +307 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/config/mod.rs +99 -5
- linthis-0.0.11/src/formatters/csharp.rs +177 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/formatters/mod.rs +10 -0
- linthis-0.0.11/src/formatters/php.rs +111 -0
- linthis-0.0.11/src/formatters/ruby.rs +110 -0
- linthis-0.0.11/src/formatters/scala.rs +103 -0
- linthis-0.0.11/src/formatters/shell.rs +104 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/interactive/nolint.rs +151 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/lib.rs +250 -1
- linthis-0.0.11/src/lsp/diagnostics.rs +130 -0
- linthis-0.0.11/src/lsp/document.rs +137 -0
- linthis-0.0.11/src/lsp/mod.rs +22 -0
- linthis-0.0.11/src/lsp/server.rs +277 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/main.rs +81 -3
- {linthis-0.0.9 → linthis-0.0.11}/src/plugin/cache.rs +3 -3
- {linthis-0.0.9 → linthis-0.0.11}/src/plugin/mod.rs +63 -5
- linthis-0.0.11/src/reports/consistency.rs +403 -0
- linthis-0.0.11/src/reports/html.rs +412 -0
- linthis-0.0.11/src/reports/mod.rs +31 -0
- linthis-0.0.11/src/reports/statistics.rs +355 -0
- linthis-0.0.11/src/reports/templates.rs +602 -0
- linthis-0.0.11/src/reports/trends.rs +382 -0
- linthis-0.0.11/src/rules/config.rs +268 -0
- linthis-0.0.11/src/rules/custom_checker.rs +352 -0
- linthis-0.0.11/src/rules/filter.rs +289 -0
- linthis-0.0.11/src/rules/mod.rs +78 -0
- linthis-0.0.11/src/tui/app.rs +391 -0
- linthis-0.0.11/src/tui/event.rs +275 -0
- linthis-0.0.11/src/tui/mod.rs +68 -0
- linthis-0.0.11/src/tui/ui.rs +150 -0
- linthis-0.0.11/src/tui/widgets/file_tree.rs +180 -0
- linthis-0.0.11/src/tui/widgets/help.rs +157 -0
- linthis-0.0.11/src/tui/widgets/issue_list.rs +151 -0
- linthis-0.0.11/src/tui/widgets/mod.rs +16 -0
- linthis-0.0.11/src/tui/widgets/status_bar.rs +121 -0
- linthis-0.0.11/src/watch/debounce.rs +268 -0
- linthis-0.0.11/src/watch/mod.rs +149 -0
- linthis-0.0.11/src/watch/notifications.rs +124 -0
- linthis-0.0.11/src/watch/state.rs +435 -0
- linthis-0.0.11/src/watch/watcher.rs +301 -0
- linthis-0.0.9/Cargo.lock +0 -1120
- linthis-0.0.9/docs/AUTO_SYNC.md +0 -261
- linthis-0.0.9/docs/GLOBAL_HOOKS.md +0 -373
- linthis-0.0.9/docs/SELF_UPDATE.md +0 -283
- linthis-0.0.9/src/checkers/mod.rs +0 -35
- {linthis-0.0.9 → linthis-0.0.11}/.github/workflows/release.yml +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/CHANGELOG.md +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/README.md +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/defaults/.clang-tidy +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/defaults/config.toml +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/dev.sh +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/docs/config-cli-design.md +0 -0
- /linthis-0.0.9/docs/ROADMAP.md → /linthis-0.0.11/docs/development/roadmap.md +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/docs/init-hooks-design.md +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/docs/plan-ruff-integration.md +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/docs/tasks.md +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/scripts/release.sh +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/benchmark.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/cache/hash.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/cache/mod.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/cache/storage.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/cache/types.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/checkers/cpp.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/checkers/dart.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/checkers/go.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/checkers/java.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/checkers/kotlin.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/checkers/lua.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/checkers/python.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/checkers/rust.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/checkers/swift.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/checkers/traits.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/checkers/typescript.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/cli/cache.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/cli/fix.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/cli/helpers.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/cli/hook.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/cli/init.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/cli/paths.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/cli/plugin.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/cli/recheck.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/cli/runner.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/config/cli.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/converters/eslint.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/converters/mod.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/converters/prettier.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/converters/python.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/detect.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/mod.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/parsers/eslint.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/parsers/mod.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/parsers/prettier.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/parsers/python.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/validate.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/fixers/cpplint.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/fixers/mod.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/fixers/source.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/formatters/cpp.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/formatters/dart.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/formatters/go.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/formatters/java.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/formatters/kotlin.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/formatters/lua.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/formatters/python.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/formatters/rust.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/formatters/swift.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/formatters/traits.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/formatters/typescript.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/interactive/editor.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/interactive/menu.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/interactive/mod.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/interactive/quickfix.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/plugin/auto_sync.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/plugin/config_manager.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/plugin/fetcher.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/plugin/loader.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/plugin/manifest.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/plugin/registry.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/presets/mod.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/self_update.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/templates/linter_configs.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/templates/mod.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/templates/plugin_templates.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/templates/readme.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/utils/language.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/utils/mod.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/utils/output.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/utils/types.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/utils/unicode.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/src/utils/walker.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/test-plugin-check/README.md +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/test-plugin-check/linthis-plugin.toml +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/cli_tests.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/python/bad.py +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/python/good.py +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/python/unformatted.py +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/rust/bad.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/test-plugin/linthis-plugin.toml +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/test-plugin/python/ruff.toml +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/test-plugin/rust/clippy.toml +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/test-plugin/rust/rustfmt.toml +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/us1/good.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/us1/unformatted.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/integration/cache_tests.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/integration/check_tests.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/integration/common.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/integration/config_tests.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/integration/error_tests.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/integration/format_tests.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/integration/language_tests.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/integration/mod.rs +0 -0
- {linthis-0.0.9 → linthis-0.0.11}/tests/integration/plugin_tests.rs +0 -0