diff options
| author | Yoshiya Hinosawa <stibium121@gmail.com> | 2019-01-18 05:09:44 +0900 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-17 15:09:44 -0500 |
| commit | f19622e7681b7753788137706e535f72c3ebb38e (patch) | |
| tree | 0cd5261230f895359ca479d2b2234a56f137e924 /tools/testdata | |
| parent | befc6b2e7650af09f81562cd306a6f5d3f46dc21 (diff) | |
Rewrite tools/format.py in deno (#1528)
Note: findFiles and findFilesWalk are borrowed from the previous
attempt of @pseudo-su (#1434)
Diffstat (limited to 'tools/testdata')
| -rw-r--r-- | tools/testdata/find_files_testdata/bar.md | 1 | ||||
| -rw-r--r-- | tools/testdata/find_files_testdata/bar.ts | 1 | ||||
| -rw-r--r-- | tools/testdata/find_files_testdata/bar.txt | 1 | ||||
| -rw-r--r-- | tools/testdata/find_files_testdata/foo.md | 1 | ||||
| -rw-r--r-- | tools/testdata/find_files_testdata/foo.ts | 1 | ||||
| -rw-r--r-- | tools/testdata/find_files_testdata/foo.txt | 1 | ||||
| -rw-r--r-- | tools/testdata/find_files_testdata/subdir0/bar.ts | 1 | ||||
| -rw-r--r-- | tools/testdata/find_files_testdata/subdir0/foo.ts | 1 | ||||
| -rw-r--r-- | tools/testdata/find_files_testdata/subdir0/subdir0/bar.ts | 1 | ||||
| -rw-r--r-- | tools/testdata/find_files_testdata/subdir0/subdir0/foo.ts | 1 | ||||
| -rw-r--r-- | tools/testdata/find_files_testdata/subdir1/bar.ts | 1 | ||||
| -rw-r--r-- | tools/testdata/find_files_testdata/subdir1/foo.ts | 1 |
12 files changed, 12 insertions, 0 deletions
diff --git a/tools/testdata/find_files_testdata/bar.md b/tools/testdata/find_files_testdata/bar.md new file mode 100644 index 000000000..d93e603dc --- /dev/null +++ b/tools/testdata/find_files_testdata/bar.md @@ -0,0 +1 @@ +# bar diff --git a/tools/testdata/find_files_testdata/bar.ts b/tools/testdata/find_files_testdata/bar.ts new file mode 100644 index 000000000..636c1fc27 --- /dev/null +++ b/tools/testdata/find_files_testdata/bar.ts @@ -0,0 +1 @@ +console.log("bar"); diff --git a/tools/testdata/find_files_testdata/bar.txt b/tools/testdata/find_files_testdata/bar.txt new file mode 100644 index 000000000..5716ca598 --- /dev/null +++ b/tools/testdata/find_files_testdata/bar.txt @@ -0,0 +1 @@ +bar diff --git a/tools/testdata/find_files_testdata/foo.md b/tools/testdata/find_files_testdata/foo.md new file mode 100644 index 000000000..c2a839280 --- /dev/null +++ b/tools/testdata/find_files_testdata/foo.md @@ -0,0 +1 @@ +# foo diff --git a/tools/testdata/find_files_testdata/foo.ts b/tools/testdata/find_files_testdata/foo.ts new file mode 100644 index 000000000..85ce559e8 --- /dev/null +++ b/tools/testdata/find_files_testdata/foo.ts @@ -0,0 +1 @@ +console.log("foo"); diff --git a/tools/testdata/find_files_testdata/foo.txt b/tools/testdata/find_files_testdata/foo.txt new file mode 100644 index 000000000..257cc5642 --- /dev/null +++ b/tools/testdata/find_files_testdata/foo.txt @@ -0,0 +1 @@ +foo diff --git a/tools/testdata/find_files_testdata/subdir0/bar.ts b/tools/testdata/find_files_testdata/subdir0/bar.ts new file mode 100644 index 000000000..636c1fc27 --- /dev/null +++ b/tools/testdata/find_files_testdata/subdir0/bar.ts @@ -0,0 +1 @@ +console.log("bar"); diff --git a/tools/testdata/find_files_testdata/subdir0/foo.ts b/tools/testdata/find_files_testdata/subdir0/foo.ts new file mode 100644 index 000000000..85ce559e8 --- /dev/null +++ b/tools/testdata/find_files_testdata/subdir0/foo.ts @@ -0,0 +1 @@ +console.log("foo"); diff --git a/tools/testdata/find_files_testdata/subdir0/subdir0/bar.ts b/tools/testdata/find_files_testdata/subdir0/subdir0/bar.ts new file mode 100644 index 000000000..636c1fc27 --- /dev/null +++ b/tools/testdata/find_files_testdata/subdir0/subdir0/bar.ts @@ -0,0 +1 @@ +console.log("bar"); diff --git a/tools/testdata/find_files_testdata/subdir0/subdir0/foo.ts b/tools/testdata/find_files_testdata/subdir0/subdir0/foo.ts new file mode 100644 index 000000000..85ce559e8 --- /dev/null +++ b/tools/testdata/find_files_testdata/subdir0/subdir0/foo.ts @@ -0,0 +1 @@ +console.log("foo"); diff --git a/tools/testdata/find_files_testdata/subdir1/bar.ts b/tools/testdata/find_files_testdata/subdir1/bar.ts new file mode 100644 index 000000000..636c1fc27 --- /dev/null +++ b/tools/testdata/find_files_testdata/subdir1/bar.ts @@ -0,0 +1 @@ +console.log("bar"); diff --git a/tools/testdata/find_files_testdata/subdir1/foo.ts b/tools/testdata/find_files_testdata/subdir1/foo.ts new file mode 100644 index 000000000..85ce559e8 --- /dev/null +++ b/tools/testdata/find_files_testdata/subdir1/foo.ts @@ -0,0 +1 @@ +console.log("foo"); |
