check-config 0.8.5__tar.gz → 0.8.6__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 (139) hide show
  1. check_config-0.8.6/.zellij/env +2 -0
  2. check_config-0.8.6/.zellij/layout.kdl +40 -0
  3. {check_config-0.8.5 → check_config-0.8.6}/CHANGES.md +4 -0
  4. {check_config-0.8.5 → check_config-0.8.6}/Cargo.lock +60 -515
  5. {check_config-0.8.5 → check_config-0.8.6}/Cargo.toml +12 -12
  6. {check_config-0.8.5 → check_config-0.8.6}/PKG-INFO +1 -1
  7. {check_config-0.8.5 → check_config-0.8.6}/docs/usage.md +1 -1
  8. {check_config-0.8.5 → check_config-0.8.6}/example/checkers/check-config.toml +1 -2
  9. {check_config-0.8.5 → check_config-0.8.6}/pyproject.toml +1 -1
  10. {check_config-0.8.5 → check_config-0.8.6}/src/cli.rs +5 -13
  11. {check_config-0.8.5 → check_config-0.8.6}/.gitignore +0 -0
  12. {check_config-0.8.5 → check_config-0.8.6}/.pre-commit-hook.yaml +0 -0
  13. {check_config-0.8.5 → check_config-0.8.6}/.readthedocs.yaml +0 -0
  14. {check_config-0.8.5 → check_config-0.8.6}/LICENSE +0 -0
  15. {check_config-0.8.5 → check_config-0.8.6}/README.md +0 -0
  16. {check_config-0.8.5 → check_config-0.8.6}/docs/checkers.md +0 -0
  17. {check_config-0.8.5 → check_config-0.8.6}/docs/examples.md +0 -0
  18. {check_config-0.8.5 → check_config-0.8.6}/docs/features.md +0 -0
  19. {check_config-0.8.5 → check_config-0.8.6}/docs/index.md +0 -0
  20. {check_config-0.8.5 → check_config-0.8.6}/docs/installation.md +0 -0
  21. {check_config-0.8.5 → check_config-0.8.6}/docs/requirements.txt +0 -0
  22. {check_config-0.8.5 → check_config-0.8.6}/docs/support.md +0 -0
  23. {check_config-0.8.5 → check_config-0.8.6}/example/.gitignore +0 -0
  24. {check_config-0.8.5 → check_config-0.8.6}/example/check-config-for-usage-doc.toml +0 -0
  25. {check_config-0.8.5 → check_config-0.8.6}/example/checkers/folder/local_file.toml +0 -0
  26. {check_config-0.8.5 → check_config-0.8.6}/example/checkers/folder/relative_local_file.toml +0 -0
  27. {check_config-0.8.5 → check_config-0.8.6}/example/checkers/http_check_config.toml +0 -0
  28. {check_config-0.8.5 → check_config-0.8.6}/example/checkers/http_check_config_relative.toml +0 -0
  29. {check_config-0.8.5 → check_config-0.8.6}/example/expected_output/.bashrc +0 -0
  30. {check_config-0.8.5 → check_config-0.8.6}/example/expected_output/.gitconfig +0 -0
  31. {check_config-0.8.5 → check_config-0.8.6}/example/expected_output/test.json +0 -0
  32. {check_config-0.8.5 → check_config-0.8.6}/example/expected_output/test.toml +0 -0
  33. {check_config-0.8.5 → check_config-0.8.6}/example/expected_output/test.yaml +0 -0
  34. {check_config-0.8.5 → check_config-0.8.6}/example/input/.bashrc +0 -0
  35. {check_config-0.8.5 → check_config-0.8.6}/example/input/test.json +0 -0
  36. {check_config-0.8.5 → check_config-0.8.6}/example/input/test.toml +0 -0
  37. {check_config-0.8.5 → check_config-0.8.6}/example/input/test.yaml +0 -0
  38. {check_config-0.8.5 → check_config-0.8.6}/example/input/to_be_removed +0 -0
  39. {check_config-0.8.5 → check_config-0.8.6}/example/pyproject.toml +0 -0
  40. {check_config-0.8.5 → check_config-0.8.6}/example/test.sh +0 -0
  41. {check_config-0.8.5 → check_config-0.8.6}/example/test_via_pyproject.sh +0 -0
  42. {check_config-0.8.5 → check_config-0.8.6}/example_checkers/bash.toml +0 -0
  43. {check_config-0.8.5 → check_config-0.8.6}/example_checkers/black.toml +0 -0
  44. {check_config-0.8.5 → check_config-0.8.6}/example_checkers/mypy.toml +0 -0
  45. {check_config-0.8.5 → check_config-0.8.6}/example_checkers/python.toml +0 -0
  46. {check_config-0.8.5 → check_config-0.8.6}/example_checkers/ruff.toml +0 -0
  47. {check_config-0.8.5 → check_config-0.8.6}/mkdocs.yml +0 -0
  48. {check_config-0.8.5 → check_config-0.8.6}/src/bin/check-config.rs +0 -0
  49. {check_config-0.8.5 → check_config-0.8.6}/src/checkers/base.rs +0 -0
  50. {check_config-0.8.5 → check_config-0.8.6}/src/checkers/entry_absent.rs +0 -0
  51. {check_config-0.8.5 → check_config-0.8.6}/src/checkers/entry_present.rs +0 -0
  52. {check_config-0.8.5 → check_config-0.8.6}/src/checkers/file_absent.rs +0 -0
  53. {check_config-0.8.5 → check_config-0.8.6}/src/checkers/file_present.rs +0 -0
  54. {check_config-0.8.5 → check_config-0.8.6}/src/checkers/file_regex.rs +0 -0
  55. {check_config-0.8.5 → check_config-0.8.6}/src/checkers/key_absent.rs +0 -0
  56. {check_config-0.8.5 → check_config-0.8.6}/src/checkers/key_value_present.rs +0 -0
  57. {check_config-0.8.5 → check_config-0.8.6}/src/checkers/key_value_regex_match.rs +0 -0
  58. {check_config-0.8.5 → check_config-0.8.6}/src/checkers/lines_absent.rs +0 -0
  59. {check_config-0.8.5 → check_config-0.8.6}/src/checkers/lines_present.rs +0 -0
  60. {check_config-0.8.5 → check_config-0.8.6}/src/checkers/mod.rs +0 -0
  61. {check_config-0.8.5 → check_config-0.8.6}/src/checkers/schema_validate.rs +0 -0
  62. {check_config-0.8.5 → check_config-0.8.6}/src/checkers/test_helpers.rs +0 -0
  63. {check_config-0.8.5 → check_config-0.8.6}/src/checkers/utils.rs +0 -0
  64. {check_config-0.8.5 → check_config-0.8.6}/src/file_types/ini.rs +0 -0
  65. {check_config-0.8.5 → check_config-0.8.6}/src/file_types/json.rs +0 -0
  66. {check_config-0.8.5 → check_config-0.8.6}/src/file_types/mod.rs +0 -0
  67. {check_config-0.8.5 → check_config-0.8.6}/src/file_types/toml.rs +0 -0
  68. {check_config-0.8.5 → check_config-0.8.6}/src/file_types/yaml.rs +0 -0
  69. {check_config-0.8.5 → check_config-0.8.6}/src/integration_test.rs +0 -0
  70. {check_config-0.8.5 → check_config-0.8.6}/src/lib.rs +0 -0
  71. {check_config-0.8.5 → check_config-0.8.6}/src/mapping/generic.rs +0 -0
  72. {check_config-0.8.5 → check_config-0.8.6}/src/mapping/json.rs +0 -0
  73. {check_config-0.8.5 → check_config-0.8.6}/src/mapping/mod.rs +0 -0
  74. {check_config-0.8.5 → check_config-0.8.6}/src/mapping/toml.rs +0 -0
  75. {check_config-0.8.5 → check_config-0.8.6}/src/mapping/yaml.rs +0 -0
  76. {check_config-0.8.5 → check_config-0.8.6}/src/uri.rs +0 -0
  77. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_absent/1/checker.toml +0 -0
  78. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_absent/1/expected_output.json +0 -0
  79. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_absent/1/expected_output.toml +0 -0
  80. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_absent/1/expected_output.yaml +0 -0
  81. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_absent/1/input.json +0 -0
  82. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_absent/1/input.toml +0 -0
  83. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_absent/1/input.yaml +0 -0
  84. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_absent/2/checker.toml +0 -0
  85. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_absent/2/expected_output.json +0 -0
  86. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_absent/2/expected_output.toml +0 -0
  87. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_absent/2/expected_output.yaml +0 -0
  88. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_absent/2/input.json +0 -0
  89. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_absent/2/input.toml +0 -0
  90. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_absent/2/input.yaml +0 -0
  91. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_present/1/checker.toml +0 -0
  92. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_present/1/expected_output.json +0 -0
  93. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_present/1/expected_output.toml +0 -0
  94. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_present/1/expected_output.yaml +0 -0
  95. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_present/1/input.json +0 -0
  96. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_present/1/input.toml +0 -0
  97. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_present/1/input.yaml +0 -0
  98. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_present/2/checker.toml +0 -0
  99. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_present/2/expected_output.json +0 -0
  100. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_present/2/expected_output.toml +0 -0
  101. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_present/2/expected_output.yaml +0 -0
  102. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_present/2/input.json +0 -0
  103. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_present/2/input.toml +0 -0
  104. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/entry_present/2/input.yaml +0 -0
  105. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_absent/1/checker.toml +0 -0
  106. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_absent/1/expected_output.json +0 -0
  107. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_absent/1/expected_output.toml +0 -0
  108. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_absent/1/expected_output.yaml +0 -0
  109. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_absent/1/input.json +0 -0
  110. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_absent/1/input.toml +0 -0
  111. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_absent/1/input.yaml +0 -0
  112. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_present/1/checker.toml +0 -0
  113. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_present/1/expected_output.json +0 -0
  114. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_present/1/expected_output.toml +0 -0
  115. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_present/1/expected_output.yaml +0 -0
  116. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_present/1/input.json +0 -0
  117. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_present/1/input.toml +0 -0
  118. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_present/1/input.yaml +0 -0
  119. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_present/2/checker.toml +0 -0
  120. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_present/2/expected_output.json +0 -0
  121. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_present/2/expected_output.toml +0 -0
  122. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_present/2/expected_output.yaml +0 -0
  123. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_present/2/input.json +0 -0
  124. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_present/2/input.toml +0 -0
  125. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_present/2/input.yaml +0 -0
  126. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/1/checker.toml +0 -0
  127. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/1/expected_output.json +0 -0
  128. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/1/expected_output.toml +0 -0
  129. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/1/expected_output.yaml +0 -0
  130. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/1/input.json +0 -0
  131. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/1/input.toml +0 -0
  132. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/1/input.yaml +0 -0
  133. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/2/checker.toml +0 -0
  134. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/2/expected_output.json +0 -0
  135. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/2/expected_output.toml +0 -0
  136. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/2/expected_output.yaml +0 -0
  137. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/2/input.json +0 -0
  138. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/2/input.toml +0 -0
  139. {check_config-0.8.5 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/2/input.yaml +0 -0
@@ -0,0 +1,2 @@
1
+ SESSION_NAME=check-config
2
+ LAYOUT_NAME=.zellij/layout.kdl
@@ -0,0 +1,40 @@
1
+ layout {
2
+ cwd "/home/ubuntu/repos"
3
+ tab name="check-config" focus=true {
4
+ pane size=1 borderless=true {
5
+ plugin location="zellij:tab-bar"
6
+ }
7
+ pane split_direction="vertical" {
8
+ pane command="gitui" cwd="check-config" size="50%" {
9
+ start_suspended true
10
+ }
11
+ pane command="/usr/lib/helix/hx" cwd="check-config" size="50%" {
12
+ start_suspended true
13
+ }
14
+ }
15
+ pane size=1 borderless=true {
16
+ plugin location="zellij:status-bar"
17
+ }
18
+ }
19
+ tab name="checks" {
20
+ pane size=1 borderless=true {
21
+ plugin location="zellij:tab-bar"
22
+ }
23
+ pane command="/usr/lib/helix/hx" cwd="checks" {
24
+ start_suspended true
25
+ }
26
+ pane size=1 borderless=true {
27
+ plugin location="zellij:status-bar"
28
+ }
29
+ }
30
+ new_tab_template {
31
+ pane size=1 borderless=true {
32
+ plugin location="zellij:tab-bar"
33
+ }
34
+ pane cwd="/home/ubuntu/repos/check-config"
35
+ pane size=1 borderless=true {
36
+ plugin location="zellij:status-bar"
37
+ }
38
+ }
39
+ }
40
+
@@ -1,5 +1,9 @@
1
1
  # CHANGES
2
2
 
3
+ ## 0.8.6
4
+
5
+ - The path specified on the cli with, can also be a URL.
6
+
3
7
  ## 0.8.5
4
8
 
5
9
  - Add tags to select checkers