aboutsummaryrefslogtreecommitdiff
path: root/Makefile.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-20 01:58:02 +0000
committerFuwn <[email protected]>2021-05-20 01:58:02 +0000
commit1bd7e65a94289e444f067f4da28935df0baca9be (patch)
tree9d54c9e91ac6a79f060ad069b9c1de34c34a844f /Makefile.toml
downloadnitrous-1bd7e65a94289e444f067f4da28935df0baca9be.tar.xz
nitrous-1bd7e65a94289e444f067f4da28935df0baca9be.zip
feat(nitrous): :star:
Diffstat (limited to 'Makefile.toml')
-rw-r--r--Makefile.toml26
1 files changed, 26 insertions, 0 deletions
diff --git a/Makefile.toml b/Makefile.toml
new file mode 100644
index 0000000..67f8ff0
--- /dev/null
+++ b/Makefile.toml
@@ -0,0 +1,26 @@
+# ------------
+# | Wrappers |
+# ------------
+[tasks.fmt]
+command = "cargo"
+args = ["fmt"]
+private = true
+
+[tasks.check]
+command = "cargo"
+args = ["check"]
+private = true
+
+[tasks.clippy]
+command = "cargo"
+args = ["clippy"]
+private = true
+
+# -------------
+# | Executors |
+# -------------
+[tasks.checkf]
+dependencies = ["fmt", "check"]
+
+[tasks.checkfc]
+dependencies = ["fmt", "check", "clippy"]