diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2021-11-23 10:38:11 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-23 10:38:11 -0500 |
| commit | 51e3db956a5927229e3f46f4eaaf317e935f8f17 (patch) | |
| tree | 1af79152c7c1edc2c9bc21e8501aad1ba5d7e426 /cli/tests/testdata/fmt/deno.jsonc | |
| parent | d8afd5683857de83f3cc80c33322df3d65377210 (diff) | |
fix(cli): config file should resolve paths relative to the config file (#12867)
* Add `specifier_to_file_path` to support converting a ModuleSpecifier with a unix-style path to a PathBuf on Windows.
Diffstat (limited to 'cli/tests/testdata/fmt/deno.jsonc')
| -rw-r--r-- | cli/tests/testdata/fmt/deno.jsonc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/testdata/fmt/deno.jsonc b/cli/tests/testdata/fmt/deno.jsonc index 0e682cf36..9c330d34a 100644 --- a/cli/tests/testdata/fmt/deno.jsonc +++ b/cli/tests/testdata/fmt/deno.jsonc @@ -1,8 +1,8 @@ { "fmt": { "files": { - "include": ["fmt/fmt_with_config/"], - "exclude": ["fmt/fmt_with_config/b.ts"] + "include": ["fmt_with_config/"], + "exclude": ["fmt_with_config/b.ts"] }, "options": { "useTabs": true, |
