summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/fmt/badly_formatted_fixed.md
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/fmt/badly_formatted_fixed.md')
-rw-r--r--cli/tests/testdata/fmt/badly_formatted_fixed.md37
1 files changed, 0 insertions, 37 deletions
diff --git a/cli/tests/testdata/fmt/badly_formatted_fixed.md b/cli/tests/testdata/fmt/badly_formatted_fixed.md
deleted file mode 100644
index 8ba74cac3..000000000
--- a/cli/tests/testdata/fmt/badly_formatted_fixed.md
+++ /dev/null
@@ -1,37 +0,0 @@
-# Hello Markdown
-
-```js
-console.log("Hello World");
-```
-
-```javascript
-console.log("Hello World2");
-```
-
-```ts
-function hello(name: string) {
- console.log(name);
-}
-
-hello("alice");
-```
-
-```typescript
-function foo(): number {
- return 2;
-}
-```
-
-```jsonc
-{
- // Comment in JSON
- "key": "value",
- "key2": "value2"
-}
-```
-
-```json
-{
- "numbers": ["1", "2"]
-}
-```