mirror of
https://github.com/ditkrg/todo-to-issue-action.git
synced 2026-01-25 07:16:42 +00:00
Merge branch 'master' into master
This commit is contained in:
@@ -201,6 +201,20 @@ index 0000000..525e25d
|
||||
+ # This function should probably do something more interesting
|
||||
+ # labels: help wanted
|
||||
+ pass
|
||||
diff --git a/tests/BUILD.bazel b/tests/BUILD.bazel
|
||||
new file mode 100644
|
||||
index 0000000..525e25d
|
||||
--- /dev/null
|
||||
+++ b/tests/BUILD.bazel
|
||||
@@ -0,0 +1,23 @@
|
||||
+def hello_world():
|
||||
+ # TODO: Come up with a more imaginative greeting
|
||||
+ print('Hello world')
|
||||
+
|
||||
+ # TODO: Do more stuff
|
||||
+ # This function should probably do something more interesting
|
||||
+ # labels: help wanted
|
||||
+ pass
|
||||
diff --git a/tests/example_file.ahk b/src/tests/example_file.ahk
|
||||
new file mode 100644
|
||||
index 0000000..7cccc5b
|
||||
@@ -424,10 +438,111 @@ index 6b0c6cf..b37e70a 100644
|
||||
@@ -1,1 +1,2 @@
|
||||
+' TODO: remove feature to prevent legal issues
|
||||
Public Sub Plagiarize()
|
||||
diff --git a/tests/example.sht b/tests/example.sht
|
||||
index 6b0c6cf..b37e70a 100644
|
||||
--- a/tests/example.sht
|
||||
+++ b/tests/example.sht
|
||||
@@ -1,1 +1,2 @@
|
||||
+' TODO: switch to tea
|
||||
Public Sub MakeCoffee()
|
||||
diff --git a/tests/example.cu b/tests/example.cu
|
||||
new file mode 100644
|
||||
index 0000000..a6c6cb0
|
||||
--- /dev/null
|
||||
+++ b/tests/example.cu
|
||||
@@ -1,3 +1,11 @@
|
||||
+
|
||||
+// TODO rename this function
|
||||
+__global__ void test() {
|
||||
+ /*
|
||||
+ TODO fill this with something useful
|
||||
+ */
|
||||
+}
|
||||
+
|
||||
diff --git a/tests/Makefile b/tests/Makefile
|
||||
new file mode 100644
|
||||
index 0000000..2996176
|
||||
--- /dev/null
|
||||
+++ b/tests/Makefile
|
||||
@@ -0,0 +1,12 @@
|
||||
+# TODO change name.
|
||||
+NAME = asm
|
||||
+
|
||||
+# TODO source files must be explicitly named.
|
||||
+SRC = $(shell find mandatory/src -name "*.asm")
|
||||
+OBJ = $(patsubst src/%.asm, obj/%.o, $(SRC))
|
||||
+.PHONY: all
|
||||
+all: $(NAME)
|
||||
+$(NAME): $(OBJ)
|
||||
+ # TODO create the directory.
|
||||
+ $(AR) rc $@ $(OBJ)
|
||||
+
|
||||
diff --git a/tests/example_file.liquid b/tests/example_file.liquid
|
||||
new file mode 100644
|
||||
index 0000000..7cccc5b
|
||||
--- /dev/null
|
||||
+++ b/tests/example_file.liquid
|
||||
@@ -0,0 +1,11 @@
|
||||
+{% comment %} TODO: remove loop logic {% endcomment %}
|
||||
+{% for i in (1..3) -%}
|
||||
+ # TODO: Do math here!
|
||||
+ # labels: help wanted
|
||||
+ {{ i }}
|
||||
+{% endfor %}
|
||||
+{% comment %}
|
||||
+TODO: Render Liquid file
|
||||
+{% assign featured_product = all_products["product_handle"] %}
|
||||
+{% render "product", product: featured_product %}
|
||||
+{% endcomment %}
|
||||
diff --git a/tests/example_file.tsx b/tests/example_file.tsx
|
||||
new file mode 100644
|
||||
index 0000000..7cccc5b
|
||||
--- /dev/null
|
||||
+++ b/tests/example_file.tsx
|
||||
@@ -0,0 +1,13 @@
|
||||
+// TODO: rename component
|
||||
+export default async function Component() {
|
||||
+ /* TODO: Use state here
|
||||
+ labels: client */
|
||||
+
|
||||
+ return (
|
||||
+ <div>
|
||||
+ {/*
|
||||
+ TODO: use styled component library
|
||||
+ */}
|
||||
+ </div>
|
||||
+ );
|
||||
+}
|
||||
diff --git a/src/Swarm/Game/example.purs b/src/Swarm/Game/example.purs
|
||||
new file mode 100644
|
||||
index 0000000..0ce9b1a
|
||||
--- /dev/null
|
||||
+++ b/src/Swarm/Game/example.purs
|
||||
@@ -0,0 +1,14 @@
|
||||
+-- | Standard devices that are always installed.
|
||||
+--
|
||||
+-- TODO: Remove standard devices
|
||||
+-- In the future, make a way to build these and just start the base
|
||||
+-- out with a large supply of each?
|
||||
+-- labels: redesign
|
||||
+stdDeviceList =
|
||||
+ ["treads", "grabber", "solar panel", "scanner", "plasma cutter"]
|
||||
+
|
||||
+{- | Very complicated function.
|
||||
+
|
||||
+TODO: Create an issue for TODO
|
||||
+-}
|
||||
+sum a b = a + b
|
||||
diff --git a/src/Swarm/Game/example.agda b/src/Swarm/Game/example.agda
|
||||
new file mode 100644
|
||||
index 0000000..0ce9b1a
|
||||
--- /dev/null
|
||||
+++ b/src/Swarm/Game/example.agda
|
||||
@@ -0,0 +1,14 @@
|
||||
+-- | Standard devices that are always installed.
|
||||
+--
|
||||
+-- TODO: Remove standard devices
|
||||
+-- In the future, make a way to build these and just start the base
|
||||
+-- out with a large supply of each?
|
||||
+-- labels: redesign
|
||||
+stdDeviceList =
|
||||
+ ["treads", "grabber", "solar panel", "scanner", "plasma cutter"]
|
||||
+
|
||||
+{- | Very complicated function.
|
||||
+
|
||||
+TODO: Create an issue for TODO
|
||||
+-}
|
||||
+sum a b = a + b
|
||||
|
||||
Reference in New Issue
Block a user