From 39ea4abff4bfa09c4e98e00ad0d4e0e7b78f1187 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 17 Jan 2022 20:10:17 -0500 Subject: feat: auto-discover config file (#13313) --- cli/tests/testdata/fmt/with_config/deno.jsonc | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 cli/tests/testdata/fmt/with_config/deno.jsonc (limited to 'cli/tests/testdata/fmt/with_config/deno.jsonc') diff --git a/cli/tests/testdata/fmt/with_config/deno.jsonc b/cli/tests/testdata/fmt/with_config/deno.jsonc new file mode 100644 index 000000000..3b9474e64 --- /dev/null +++ b/cli/tests/testdata/fmt/with_config/deno.jsonc @@ -0,0 +1,19 @@ +{ + "fmt": { + "files": { + "include": [ + "./subdir/" + ], + "exclude": [ + "./subdir/b.ts" + ] + }, + "options": { + "useTabs": true, + "lineWidth": 40, + "indentWidth": 8, + "singleQuote": true, + "proseWrap": "always" + } + } +} -- cgit v1.2.3