Add 'Common.toml' #1

Merged
jaby merged 1 commits from topic/jb/add_make_toml into main 2026-07-21 20:26:36 +00:00
Showing only changes of commit c79fe9e3a6 - Show all commits
+24
View File
@@ -0,0 +1,24 @@
# All scripts require that the `cleanup-scripts` folder is available
# Runs all the cleanup-scripts
[tasks.cleanup_script]
workspace = false
run_task = [
{name = ["add_eof_newline", "remove_trailing_whitespaces"]}
]
# Runs the `add_eof_newline` script
[tasks.add_eof_newline]
workspace = false
script = ['''
#!/usr/bin/env bash
./cleanup-scripts/add_eof_newline.sh
''']
# Runs the `remove_trailing_whitespaces` script
[tasks.remove_trailing_whitespaces]
workspace = false
script = ['''
#!/usr/bin/env bash
cleanup-scripts/remove_trailing_whitespaces.sh
''']