check-config 0.8.4__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.
- {check_config-0.8.4 → check_config-0.8.6}/.gitignore +1 -0
- check_config-0.8.6/.zellij/env +2 -0
- check_config-0.8.6/.zellij/layout.kdl +40 -0
- {check_config-0.8.4 → check_config-0.8.6}/CHANGES.md +9 -0
- {check_config-0.8.4 → check_config-0.8.6}/Cargo.lock +60 -515
- {check_config-0.8.4 → check_config-0.8.6}/Cargo.toml +12 -12
- {check_config-0.8.4 → check_config-0.8.6}/PKG-INFO +1 -1
- {check_config-0.8.4 → check_config-0.8.6}/docs/checkers.md +13 -3
- {check_config-0.8.4 → check_config-0.8.6}/docs/examples.md +1 -2
- {check_config-0.8.4 → check_config-0.8.6}/docs/usage.md +14 -1
- {check_config-0.8.4 → check_config-0.8.6}/example/check-config-for-usage-doc.toml +4 -0
- {check_config-0.8.4 → check_config-0.8.6}/example/checkers/check-config.toml +20 -15
- {check_config-0.8.4 → check_config-0.8.6}/example/checkers/folder/local_file.toml +1 -2
- {check_config-0.8.4 → check_config-0.8.6}/example/checkers/http_check_config.toml +1 -2
- {check_config-0.8.4 → check_config-0.8.6}/example/expected_output/test.json +3 -0
- {check_config-0.8.4 → check_config-0.8.6}/example/expected_output/test.toml +3 -0
- {check_config-0.8.4 → check_config-0.8.6}/example/pyproject.toml +2 -2
- {check_config-0.8.4 → check_config-0.8.6}/example/test.sh +1 -1
- {check_config-0.8.4 → check_config-0.8.6}/example_checkers/python.toml +1 -2
- {check_config-0.8.4 → check_config-0.8.6}/pyproject.toml +1 -1
- {check_config-0.8.4 → check_config-0.8.6}/src/checkers/entry_present.rs +4 -1
- {check_config-0.8.4 → check_config-0.8.6}/src/checkers/file_absent.rs +1 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/checkers/file_present.rs +4 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/checkers/file_regex.rs +2 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/checkers/lines_absent.rs +3 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/checkers/lines_present.rs +5 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/checkers/mod.rs +36 -6
- {check_config-0.8.4 → check_config-0.8.6}/src/checkers/utils.rs +11 -11
- {check_config-0.8.4 → check_config-0.8.6}/src/cli.rs +75 -21
- {check_config-0.8.4 → check_config-0.8.6}/src/integration_test.rs +13 -3
- check_config-0.8.4/output/.bashrc +0 -2
- check_config-0.8.4/output/.gitconfig +0 -3
- check_config-0.8.4/output/test.json +0 -14
- check_config-0.8.4/output/test.toml +0 -7
- check_config-0.8.4/output/test.yaml +0 -9
- {check_config-0.8.4 → check_config-0.8.6}/.pre-commit-hook.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/.readthedocs.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/LICENSE +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/README.md +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/docs/features.md +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/docs/index.md +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/docs/installation.md +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/docs/requirements.txt +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/docs/support.md +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/example/.gitignore +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/example/checkers/folder/relative_local_file.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/example/checkers/http_check_config_relative.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/example/expected_output/.bashrc +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/example/expected_output/.gitconfig +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/example/expected_output/test.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/example/input/.bashrc +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/example/input/test.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/example/input/test.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/example/input/test.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/example/input/to_be_removed +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/example/test_via_pyproject.sh +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/example_checkers/bash.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/example_checkers/black.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/example_checkers/mypy.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/example_checkers/ruff.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/mkdocs.yml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/bin/check-config.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/checkers/base.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/checkers/entry_absent.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/checkers/key_absent.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/checkers/key_value_present.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/checkers/key_value_regex_match.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/checkers/schema_validate.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/checkers/test_helpers.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/file_types/ini.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/file_types/json.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/file_types/mod.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/file_types/toml.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/file_types/yaml.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/lib.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/mapping/generic.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/mapping/json.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/mapping/mod.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/mapping/toml.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/mapping/yaml.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/src/uri.rs +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_absent/1/checker.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_absent/1/expected_output.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_absent/1/expected_output.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_absent/1/expected_output.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_absent/1/input.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_absent/1/input.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_absent/1/input.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_absent/2/checker.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_absent/2/expected_output.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_absent/2/expected_output.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_absent/2/expected_output.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_absent/2/input.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_absent/2/input.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_absent/2/input.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_present/1/checker.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_present/1/expected_output.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_present/1/expected_output.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_present/1/expected_output.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_present/1/input.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_present/1/input.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_present/1/input.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_present/2/checker.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_present/2/expected_output.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_present/2/expected_output.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_present/2/expected_output.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_present/2/input.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_present/2/input.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/entry_present/2/input.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_absent/1/checker.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_absent/1/expected_output.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_absent/1/expected_output.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_absent/1/expected_output.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_absent/1/input.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_absent/1/input.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_absent/1/input.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_present/1/checker.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_present/1/expected_output.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_present/1/expected_output.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_present/1/expected_output.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_present/1/input.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_present/1/input.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_present/1/input.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_present/2/checker.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_present/2/expected_output.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_present/2/expected_output.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_present/2/expected_output.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_present/2/input.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_present/2/input.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_present/2/input.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/1/checker.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/1/expected_output.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/1/expected_output.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/1/expected_output.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/1/input.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/1/input.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/1/input.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/2/checker.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/2/expected_output.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/2/expected_output.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/2/expected_output.yaml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/2/input.json +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/2/input.toml +0 -0
- {check_config-0.8.4 → check_config-0.8.6}/tests/resources/checkers/key_value_regex_match/2/input.yaml +0 -0
@@ -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
|
+
|