mirror of
https://github.com/ditkrg/todo-to-issue-action.git
synced 2026-01-22 22:06:43 +00:00
Added Rmarkdown-support
This commit is contained in:
parent
7174525707
commit
4f20f4b489
11
syntax.json
11
syntax.json
@ -438,17 +438,6 @@
|
|||||||
"start": "<!--",
|
"start": "<!--",
|
||||||
"end": "-->"
|
"end": "-->"
|
||||||
}
|
}
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "block",
|
|
||||||
"pattern": {
|
|
||||||
"start": "{/\\*",
|
|
||||||
"end": "\\*/}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "line",
|
|
||||||
"pattern": "- \\[ \\]"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
@ -269,26 +269,14 @@ diff --git a/tests/example_file.rmd b/src/tests/example_file.rmd
|
|||||||
index 525e25d..ba4e68d 100644
|
index 525e25d..ba4e68d 100644
|
||||||
--- a/src/tests/example_file.rmd
|
--- a/src/tests/example_file.rmd
|
||||||
+++ b/src/tests/example_file.rmd
|
+++ b/src/tests/example_file.rmd
|
||||||
@@ -1,7 +0,0 @@
|
@@ -0,1 +0,0 @@
|
||||||
- {/* TODO: Hopefully this comment turns into a todo issue */}
|
- <!-- TODO: Check RMarkdown comments work -->
|
||||||
- {/*
|
|
||||||
- TODO:Multiline comments
|
|
||||||
- also need to be turned into todos, and hopefully
|
|
||||||
- kept together as one todo
|
|
||||||
- */}
|
|
||||||
- - [ ] TODO: An inline todo that's NOT a comment (what)
|
|
||||||
diff --git a/tests/example_file.qmd b/src/tests/example_file.qmd
|
diff --git a/tests/example_file.qmd b/src/tests/example_file.qmd
|
||||||
index 525e25d..ba4e68d 100644
|
index 525e25d..ba4e68d 100644
|
||||||
--- a/src/tests/example_file.qmd
|
--- a/src/tests/example_file.qmd
|
||||||
+++ b/src/tests/example_file.qmd
|
+++ b/src/tests/example_file.qmd
|
||||||
@@ -1,7 +0,0 @@
|
@@ -0,1 +0,0 @@
|
||||||
- {/* TODO: Hopefully this comment turns into a todo issue */}
|
- <!-- TODO: Check RMarkdown comments work -->
|
||||||
- {/*
|
|
||||||
- TODO:Multiline comments
|
|
||||||
- also need to be turned into todos, and hopefully
|
|
||||||
- kept together as one todo
|
|
||||||
- */}
|
|
||||||
- - [ ] TODO: An inline todo that's NOT a comment (what)
|
|
||||||
diff --git a/src/Swarm/Game/example.hs b/src/Swarm/Game/example.hs
|
diff --git a/src/Swarm/Game/example.hs b/src/Swarm/Game/example.hs
|
||||||
index 525e25d..ba4e68d 100644
|
index 525e25d..ba4e68d 100644
|
||||||
--- a/src/Swarm/Game/example.hs
|
--- a/src/Swarm/Game/example.hs
|
||||||
|
|||||||
@ -311,14 +311,15 @@ new file mode 100644
|
|||||||
index 0000000..525e25d
|
index 0000000..525e25d
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/src/tests/example_file.rmd
|
+++ b/src/tests/example_file.rmd
|
||||||
@@ -0,0 +1,7 @@
|
@@ -0,0 +0,1 @@
|
||||||
+<!-- TODO: Check RMarkdown comments work -->
|
+<!-- TODO: Check RMarkdown comments work -->
|
||||||
diff --git a/tests/example_file.qmd b/src/tests/example_file.qmd
|
diff --git a/tests/example_file.qmd b/src/tests/example_file.qmd
|
||||||
new file mode 100644
|
new file mode 100644
|
||||||
index 0000000..525e25d
|
index 0000000..525e25d
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/src/tests/example_file.qmd
|
+++ b/src/tests/example_file.qmd
|
||||||
@@ -0,0 +1,7 @@
|
@@ -0,0 +0,1 @@
|
||||||
|
+<!-- TODO: Check RMarkdown comments work -->
|
||||||
diff --git a/tests/config.jsonc b/tests/config.jsonc
|
diff --git a/tests/config.jsonc b/tests/config.jsonc
|
||||||
new file mode 100644
|
new file mode 100644
|
||||||
index 0000000..525e25d
|
index 0000000..525e25d
|
||||||
|
|||||||
@ -76,7 +76,7 @@ class NewIssueTests(unittest.TestCase):
|
|||||||
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'twig'), 2)
|
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'twig'), 2)
|
||||||
|
|
||||||
def test_md_issues(self):
|
def test_md_issues(self):
|
||||||
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'markdown'), 12)
|
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'markdown'), 8)
|
||||||
|
|
||||||
def test_r_issues(self):
|
def test_r_issues(self):
|
||||||
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'r'), 2)
|
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'r'), 2)
|
||||||
@ -156,7 +156,7 @@ class ClosedIssueTests(unittest.TestCase):
|
|||||||
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'twig'), 2)
|
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'twig'), 2)
|
||||||
|
|
||||||
def test_md_issues(self):
|
def test_md_issues(self):
|
||||||
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'markdown'), 12)
|
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'markdown'), 8)
|
||||||
|
|
||||||
def test_r_issues(self):
|
def test_r_issues(self):
|
||||||
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'r'), 2)
|
self.assertEqual(count_issues_for_file_type(self.raw_issues, 'r'), 2)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user