From f19622e7681b7753788137706e535f72c3ebb38e Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Fri, 18 Jan 2019 05:09:44 +0900 Subject: Rewrite tools/format.py in deno (#1528) Note: findFiles and findFilesWalk are borrowed from the previous attempt of @pseudo-su (#1434) --- tools/testdata/find_files_testdata/subdir1/bar.ts | 1 + tools/testdata/find_files_testdata/subdir1/foo.ts | 1 + 2 files changed, 2 insertions(+) create mode 100644 tools/testdata/find_files_testdata/subdir1/bar.ts create mode 100644 tools/testdata/find_files_testdata/subdir1/foo.ts (limited to 'tools/testdata/find_files_testdata/subdir1') 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"); -- cgit v1.2.3