├── .codespellrc ├── .gitignore ├── .pre-commit-config.yaml ├── CITATION.cff ├── LICENSE ├── README.md ├── check_my_code.m ├── miss_hit.cfg ├── pre-push.sample └── test ├── bad_function.m ├── good_function.m ├── runtests.m └── test_check_my_code.m /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remi-Gau/check_my_code/HEAD/.codespellrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remi-Gau/check_my_code/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remi-Gau/check_my_code/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remi-Gau/check_my_code/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remi-Gau/check_my_code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remi-Gau/check_my_code/HEAD/README.md -------------------------------------------------------------------------------- /check_my_code.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remi-Gau/check_my_code/HEAD/check_my_code.m -------------------------------------------------------------------------------- /miss_hit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remi-Gau/check_my_code/HEAD/miss_hit.cfg -------------------------------------------------------------------------------- /pre-push.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remi-Gau/check_my_code/HEAD/pre-push.sample -------------------------------------------------------------------------------- /test/bad_function.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remi-Gau/check_my_code/HEAD/test/bad_function.m -------------------------------------------------------------------------------- /test/good_function.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remi-Gau/check_my_code/HEAD/test/good_function.m -------------------------------------------------------------------------------- /test/runtests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remi-Gau/check_my_code/HEAD/test/runtests.m -------------------------------------------------------------------------------- /test/test_check_my_code.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remi-Gau/check_my_code/HEAD/test/test_check_my_code.m --------------------------------------------------------------------------------