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.
Files changed (202) hide show
  1. {linthis-0.0.9 → linthis-0.0.11}/.gitignore +1 -0
  2. linthis-0.0.11/.readthedocs.yaml +13 -0
  3. linthis-0.0.11/Cargo.lock +3044 -0
  4. {linthis-0.0.9 → linthis-0.0.11}/Cargo.toml +20 -1
  5. {linthis-0.0.9 → linthis-0.0.11}/PKG-INFO +1 -1
  6. linthis-0.0.11/docs/development/changelog.md +58 -0
  7. linthis-0.0.11/docs/development/contributing.md +132 -0
  8. linthis-0.0.11/docs/features/auto-sync.md +226 -0
  9. linthis-0.0.11/docs/features/git-hooks.md +368 -0
  10. linthis-0.0.11/docs/features/plugins.md +363 -0
  11. linthis-0.0.11/docs/features/self-update.md +239 -0
  12. linthis-0.0.11/docs/features/watch-mode.md +78 -0
  13. linthis-0.0.11/docs/getting-started/configuration.md +141 -0
  14. linthis-0.0.11/docs/getting-started/installation.md +63 -0
  15. linthis-0.0.11/docs/getting-started/quickstart.md +111 -0
  16. linthis-0.0.11/docs/index.md +48 -0
  17. linthis-0.0.11/docs/languages/cpp.md +179 -0
  18. linthis-0.0.11/docs/languages/csharp.md +171 -0
  19. linthis-0.0.11/docs/languages/dart.md +154 -0
  20. linthis-0.0.11/docs/languages/go.md +141 -0
  21. linthis-0.0.11/docs/languages/index.md +74 -0
  22. linthis-0.0.11/docs/languages/java.md +134 -0
  23. linthis-0.0.11/docs/languages/javascript.md +136 -0
  24. linthis-0.0.11/docs/languages/kotlin.md +151 -0
  25. linthis-0.0.11/docs/languages/lua.md +159 -0
  26. linthis-0.0.11/docs/languages/objc.md +133 -0
  27. linthis-0.0.11/docs/languages/php.md +137 -0
  28. linthis-0.0.11/docs/languages/python.md +148 -0
  29. linthis-0.0.11/docs/languages/ruby.md +119 -0
  30. linthis-0.0.11/docs/languages/rust.md +121 -0
  31. linthis-0.0.11/docs/languages/scala.md +163 -0
  32. linthis-0.0.11/docs/languages/shell.md +118 -0
  33. linthis-0.0.11/docs/languages/swift.md +163 -0
  34. linthis-0.0.11/docs/languages/typescript.md +204 -0
  35. linthis-0.0.11/docs/reference/cli.md +299 -0
  36. linthis-0.0.11/docs/reference/configuration.md +500 -0
  37. linthis-0.0.11/docs/requirements.txt +3 -0
  38. linthis-0.0.11/mkdocs.yml +78 -0
  39. {linthis-0.0.9 → linthis-0.0.11}/pyproject.toml +1 -1
  40. linthis-0.0.11/src/checkers/csharp.rs +250 -0
  41. linthis-0.0.11/src/checkers/mod.rs +105 -0
  42. linthis-0.0.11/src/checkers/php.rs +198 -0
  43. linthis-0.0.11/src/checkers/ruby.rs +220 -0
  44. linthis-0.0.11/src/checkers/scala.rs +189 -0
  45. linthis-0.0.11/src/checkers/shell.rs +208 -0
  46. {linthis-0.0.9 → linthis-0.0.11}/src/cli/commands.rs +149 -0
  47. {linthis-0.0.9 → linthis-0.0.11}/src/cli/doctor.rs +36 -0
  48. {linthis-0.0.9 → linthis-0.0.11}/src/cli/mod.rs +4 -0
  49. linthis-0.0.11/src/cli/report.rs +226 -0
  50. linthis-0.0.11/src/cli/watch.rs +307 -0
  51. {linthis-0.0.9 → linthis-0.0.11}/src/config/mod.rs +99 -5
  52. linthis-0.0.11/src/formatters/csharp.rs +177 -0
  53. {linthis-0.0.9 → linthis-0.0.11}/src/formatters/mod.rs +10 -0
  54. linthis-0.0.11/src/formatters/php.rs +111 -0
  55. linthis-0.0.11/src/formatters/ruby.rs +110 -0
  56. linthis-0.0.11/src/formatters/scala.rs +103 -0
  57. linthis-0.0.11/src/formatters/shell.rs +104 -0
  58. {linthis-0.0.9 → linthis-0.0.11}/src/interactive/nolint.rs +151 -0
  59. {linthis-0.0.9 → linthis-0.0.11}/src/lib.rs +250 -1
  60. linthis-0.0.11/src/lsp/diagnostics.rs +130 -0
  61. linthis-0.0.11/src/lsp/document.rs +137 -0
  62. linthis-0.0.11/src/lsp/mod.rs +22 -0
  63. linthis-0.0.11/src/lsp/server.rs +277 -0
  64. {linthis-0.0.9 → linthis-0.0.11}/src/main.rs +81 -3
  65. {linthis-0.0.9 → linthis-0.0.11}/src/plugin/cache.rs +3 -3
  66. {linthis-0.0.9 → linthis-0.0.11}/src/plugin/mod.rs +63 -5
  67. linthis-0.0.11/src/reports/consistency.rs +403 -0
  68. linthis-0.0.11/src/reports/html.rs +412 -0
  69. linthis-0.0.11/src/reports/mod.rs +31 -0
  70. linthis-0.0.11/src/reports/statistics.rs +355 -0
  71. linthis-0.0.11/src/reports/templates.rs +602 -0
  72. linthis-0.0.11/src/reports/trends.rs +382 -0
  73. linthis-0.0.11/src/rules/config.rs +268 -0
  74. linthis-0.0.11/src/rules/custom_checker.rs +352 -0
  75. linthis-0.0.11/src/rules/filter.rs +289 -0
  76. linthis-0.0.11/src/rules/mod.rs +78 -0
  77. linthis-0.0.11/src/tui/app.rs +391 -0
  78. linthis-0.0.11/src/tui/event.rs +275 -0
  79. linthis-0.0.11/src/tui/mod.rs +68 -0
  80. linthis-0.0.11/src/tui/ui.rs +150 -0
  81. linthis-0.0.11/src/tui/widgets/file_tree.rs +180 -0
  82. linthis-0.0.11/src/tui/widgets/help.rs +157 -0
  83. linthis-0.0.11/src/tui/widgets/issue_list.rs +151 -0
  84. linthis-0.0.11/src/tui/widgets/mod.rs +16 -0
  85. linthis-0.0.11/src/tui/widgets/status_bar.rs +121 -0
  86. linthis-0.0.11/src/watch/debounce.rs +268 -0
  87. linthis-0.0.11/src/watch/mod.rs +149 -0
  88. linthis-0.0.11/src/watch/notifications.rs +124 -0
  89. linthis-0.0.11/src/watch/state.rs +435 -0
  90. linthis-0.0.11/src/watch/watcher.rs +301 -0
  91. linthis-0.0.9/Cargo.lock +0 -1120
  92. linthis-0.0.9/docs/AUTO_SYNC.md +0 -261
  93. linthis-0.0.9/docs/GLOBAL_HOOKS.md +0 -373
  94. linthis-0.0.9/docs/SELF_UPDATE.md +0 -283
  95. linthis-0.0.9/src/checkers/mod.rs +0 -35
  96. {linthis-0.0.9 → linthis-0.0.11}/.github/workflows/release.yml +0 -0
  97. {linthis-0.0.9 → linthis-0.0.11}/CHANGELOG.md +0 -0
  98. {linthis-0.0.9 → linthis-0.0.11}/README.md +0 -0
  99. {linthis-0.0.9 → linthis-0.0.11}/defaults/.clang-tidy +0 -0
  100. {linthis-0.0.9 → linthis-0.0.11}/defaults/config.toml +0 -0
  101. {linthis-0.0.9 → linthis-0.0.11}/dev.sh +0 -0
  102. {linthis-0.0.9 → linthis-0.0.11}/docs/config-cli-design.md +0 -0
  103. /linthis-0.0.9/docs/ROADMAP.md → /linthis-0.0.11/docs/development/roadmap.md +0 -0
  104. {linthis-0.0.9 → linthis-0.0.11}/docs/init-hooks-design.md +0 -0
  105. {linthis-0.0.9 → linthis-0.0.11}/docs/plan-ruff-integration.md +0 -0
  106. {linthis-0.0.9 → linthis-0.0.11}/docs/tasks.md +0 -0
  107. {linthis-0.0.9 → linthis-0.0.11}/scripts/release.sh +0 -0
  108. {linthis-0.0.9 → linthis-0.0.11}/src/benchmark.rs +0 -0
  109. {linthis-0.0.9 → linthis-0.0.11}/src/cache/hash.rs +0 -0
  110. {linthis-0.0.9 → linthis-0.0.11}/src/cache/mod.rs +0 -0
  111. {linthis-0.0.9 → linthis-0.0.11}/src/cache/storage.rs +0 -0
  112. {linthis-0.0.9 → linthis-0.0.11}/src/cache/types.rs +0 -0
  113. {linthis-0.0.9 → linthis-0.0.11}/src/checkers/cpp.rs +0 -0
  114. {linthis-0.0.9 → linthis-0.0.11}/src/checkers/dart.rs +0 -0
  115. {linthis-0.0.9 → linthis-0.0.11}/src/checkers/go.rs +0 -0
  116. {linthis-0.0.9 → linthis-0.0.11}/src/checkers/java.rs +0 -0
  117. {linthis-0.0.9 → linthis-0.0.11}/src/checkers/kotlin.rs +0 -0
  118. {linthis-0.0.9 → linthis-0.0.11}/src/checkers/lua.rs +0 -0
  119. {linthis-0.0.9 → linthis-0.0.11}/src/checkers/python.rs +0 -0
  120. {linthis-0.0.9 → linthis-0.0.11}/src/checkers/rust.rs +0 -0
  121. {linthis-0.0.9 → linthis-0.0.11}/src/checkers/swift.rs +0 -0
  122. {linthis-0.0.9 → linthis-0.0.11}/src/checkers/traits.rs +0 -0
  123. {linthis-0.0.9 → linthis-0.0.11}/src/checkers/typescript.rs +0 -0
  124. {linthis-0.0.9 → linthis-0.0.11}/src/cli/cache.rs +0 -0
  125. {linthis-0.0.9 → linthis-0.0.11}/src/cli/fix.rs +0 -0
  126. {linthis-0.0.9 → linthis-0.0.11}/src/cli/helpers.rs +0 -0
  127. {linthis-0.0.9 → linthis-0.0.11}/src/cli/hook.rs +0 -0
  128. {linthis-0.0.9 → linthis-0.0.11}/src/cli/init.rs +0 -0
  129. {linthis-0.0.9 → linthis-0.0.11}/src/cli/paths.rs +0 -0
  130. {linthis-0.0.9 → linthis-0.0.11}/src/cli/plugin.rs +0 -0
  131. {linthis-0.0.9 → linthis-0.0.11}/src/cli/recheck.rs +0 -0
  132. {linthis-0.0.9 → linthis-0.0.11}/src/cli/runner.rs +0 -0
  133. {linthis-0.0.9 → linthis-0.0.11}/src/config/cli.rs +0 -0
  134. {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/converters/eslint.rs +0 -0
  135. {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/converters/mod.rs +0 -0
  136. {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/converters/prettier.rs +0 -0
  137. {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/converters/python.rs +0 -0
  138. {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/detect.rs +0 -0
  139. {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/mod.rs +0 -0
  140. {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/parsers/eslint.rs +0 -0
  141. {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/parsers/mod.rs +0 -0
  142. {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/parsers/prettier.rs +0 -0
  143. {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/parsers/python.rs +0 -0
  144. {linthis-0.0.9 → linthis-0.0.11}/src/config/migrate/validate.rs +0 -0
  145. {linthis-0.0.9 → linthis-0.0.11}/src/fixers/cpplint.rs +0 -0
  146. {linthis-0.0.9 → linthis-0.0.11}/src/fixers/mod.rs +0 -0
  147. {linthis-0.0.9 → linthis-0.0.11}/src/fixers/source.rs +0 -0
  148. {linthis-0.0.9 → linthis-0.0.11}/src/formatters/cpp.rs +0 -0
  149. {linthis-0.0.9 → linthis-0.0.11}/src/formatters/dart.rs +0 -0
  150. {linthis-0.0.9 → linthis-0.0.11}/src/formatters/go.rs +0 -0
  151. {linthis-0.0.9 → linthis-0.0.11}/src/formatters/java.rs +0 -0
  152. {linthis-0.0.9 → linthis-0.0.11}/src/formatters/kotlin.rs +0 -0
  153. {linthis-0.0.9 → linthis-0.0.11}/src/formatters/lua.rs +0 -0
  154. {linthis-0.0.9 → linthis-0.0.11}/src/formatters/python.rs +0 -0
  155. {linthis-0.0.9 → linthis-0.0.11}/src/formatters/rust.rs +0 -0
  156. {linthis-0.0.9 → linthis-0.0.11}/src/formatters/swift.rs +0 -0
  157. {linthis-0.0.9 → linthis-0.0.11}/src/formatters/traits.rs +0 -0
  158. {linthis-0.0.9 → linthis-0.0.11}/src/formatters/typescript.rs +0 -0
  159. {linthis-0.0.9 → linthis-0.0.11}/src/interactive/editor.rs +0 -0
  160. {linthis-0.0.9 → linthis-0.0.11}/src/interactive/menu.rs +0 -0
  161. {linthis-0.0.9 → linthis-0.0.11}/src/interactive/mod.rs +0 -0
  162. {linthis-0.0.9 → linthis-0.0.11}/src/interactive/quickfix.rs +0 -0
  163. {linthis-0.0.9 → linthis-0.0.11}/src/plugin/auto_sync.rs +0 -0
  164. {linthis-0.0.9 → linthis-0.0.11}/src/plugin/config_manager.rs +0 -0
  165. {linthis-0.0.9 → linthis-0.0.11}/src/plugin/fetcher.rs +0 -0
  166. {linthis-0.0.9 → linthis-0.0.11}/src/plugin/loader.rs +0 -0
  167. {linthis-0.0.9 → linthis-0.0.11}/src/plugin/manifest.rs +0 -0
  168. {linthis-0.0.9 → linthis-0.0.11}/src/plugin/registry.rs +0 -0
  169. {linthis-0.0.9 → linthis-0.0.11}/src/presets/mod.rs +0 -0
  170. {linthis-0.0.9 → linthis-0.0.11}/src/self_update.rs +0 -0
  171. {linthis-0.0.9 → linthis-0.0.11}/src/templates/linter_configs.rs +0 -0
  172. {linthis-0.0.9 → linthis-0.0.11}/src/templates/mod.rs +0 -0
  173. {linthis-0.0.9 → linthis-0.0.11}/src/templates/plugin_templates.rs +0 -0
  174. {linthis-0.0.9 → linthis-0.0.11}/src/templates/readme.rs +0 -0
  175. {linthis-0.0.9 → linthis-0.0.11}/src/utils/language.rs +0 -0
  176. {linthis-0.0.9 → linthis-0.0.11}/src/utils/mod.rs +0 -0
  177. {linthis-0.0.9 → linthis-0.0.11}/src/utils/output.rs +0 -0
  178. {linthis-0.0.9 → linthis-0.0.11}/src/utils/types.rs +0 -0
  179. {linthis-0.0.9 → linthis-0.0.11}/src/utils/unicode.rs +0 -0
  180. {linthis-0.0.9 → linthis-0.0.11}/src/utils/walker.rs +0 -0
  181. {linthis-0.0.9 → linthis-0.0.11}/test-plugin-check/README.md +0 -0
  182. {linthis-0.0.9 → linthis-0.0.11}/test-plugin-check/linthis-plugin.toml +0 -0
  183. {linthis-0.0.9 → linthis-0.0.11}/tests/cli_tests.rs +0 -0
  184. {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/python/bad.py +0 -0
  185. {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/python/good.py +0 -0
  186. {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/python/unformatted.py +0 -0
  187. {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/rust/bad.rs +0 -0
  188. {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/test-plugin/linthis-plugin.toml +0 -0
  189. {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/test-plugin/python/ruff.toml +0 -0
  190. {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/test-plugin/rust/clippy.toml +0 -0
  191. {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/test-plugin/rust/rustfmt.toml +0 -0
  192. {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/us1/good.rs +0 -0
  193. {linthis-0.0.9 → linthis-0.0.11}/tests/fixtures/us1/unformatted.rs +0 -0
  194. {linthis-0.0.9 → linthis-0.0.11}/tests/integration/cache_tests.rs +0 -0
  195. {linthis-0.0.9 → linthis-0.0.11}/tests/integration/check_tests.rs +0 -0
  196. {linthis-0.0.9 → linthis-0.0.11}/tests/integration/common.rs +0 -0
  197. {linthis-0.0.9 → linthis-0.0.11}/tests/integration/config_tests.rs +0 -0
  198. {linthis-0.0.9 → linthis-0.0.11}/tests/integration/error_tests.rs +0 -0
  199. {linthis-0.0.9 → linthis-0.0.11}/tests/integration/format_tests.rs +0 -0
  200. {linthis-0.0.9 → linthis-0.0.11}/tests/integration/language_tests.rs +0 -0
  201. {linthis-0.0.9 → linthis-0.0.11}/tests/integration/mod.rs +0 -0
  202. {linthis-0.0.9 → linthis-0.0.11}/tests/integration/plugin_tests.rs +0 -0
@@ -45,3 +45,4 @@ Thumbs.db
45
45
  # Project
46
46
  .linthis/
47
47
 
48
+ site/
@@ -0,0 +1,13 @@
1
+ version: 2
2
+
3
+ build:
4
+ os: ubuntu-22.04
5
+ tools:
6
+ python: "3.11"
7
+
8
+ mkdocs:
9
+ configuration: mkdocs.yml
10
+
11
+ python:
12
+ install:
13
+ - requirements: docs/requirements.txt