├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── nvim-dap.json ├── publish.fish ├── pyproject.toml ├── pytest.ini ├── run_tests.sh ├── taskcheck ├── __main__.py ├── common.py ├── ical.py ├── install.py ├── parallel.py └── report.py ├── tests ├── conftest.py ├── test_common.py ├── test_ical.py ├── test_install.py ├── test_main.py ├── test_parallel.py └── test_report.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/README.md -------------------------------------------------------------------------------- /nvim-dap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/nvim-dap.json -------------------------------------------------------------------------------- /publish.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/publish.fish -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/pytest.ini -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/run_tests.sh -------------------------------------------------------------------------------- /taskcheck/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/taskcheck/__main__.py -------------------------------------------------------------------------------- /taskcheck/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/taskcheck/common.py -------------------------------------------------------------------------------- /taskcheck/ical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/taskcheck/ical.py -------------------------------------------------------------------------------- /taskcheck/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/taskcheck/install.py -------------------------------------------------------------------------------- /taskcheck/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/taskcheck/parallel.py -------------------------------------------------------------------------------- /taskcheck/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/taskcheck/report.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/tests/test_common.py -------------------------------------------------------------------------------- /tests/test_ical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/tests/test_ical.py -------------------------------------------------------------------------------- /tests/test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/tests/test_install.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/tests/test_parallel.py -------------------------------------------------------------------------------- /tests/test_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/tests/test_report.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00sapo/taskcheck/HEAD/uv.lock --------------------------------------------------------------------------------