chore(workflows): exclude dist directory from shellcheck

Updated the GitHub Actions workflow to exclude the dist directory from shellcheck checks, ensuring cleaner linting results.

fix(command_manager): reorder datetime import

Moved the datetime import to the correct position in command_manager.py for better code organization.

fix(reload_config): improve config value retrieval

Refactored the _read_config_value function in reload_config.sh to ensure default values are returned correctly when the key is not found in the config file.

fix(tests): adjust imports in test_scheduler_logic

Updated import statements in test_scheduler_logic.py for consistency and clarity.
This commit is contained in:
agessaman
2026-05-16 12:11:51 -07:00
parent 74b7de6f72
commit 61ee86168b
4 changed files with 11 additions and 6 deletions
+1
View File
@@ -51,6 +51,7 @@ jobs:
-not -path "./node_modules/*" \
-not -path "./.venv/*" \
-not -path "./venv/*" \
-not -path "./dist/*" \
-print0 | xargs -0 shellcheck --severity=warning
lint: