diff options
Diffstat (limited to 'cli/tests/testdata')
| -rw-r--r-- | cli/tests/testdata/lsp/deno.fmt.exclude.jsonc | 16 | ||||
| -rw-r--r-- | cli/tests/testdata/lsp/deno.lint.exclude.jsonc | 18 |
2 files changed, 34 insertions, 0 deletions
diff --git a/cli/tests/testdata/lsp/deno.fmt.exclude.jsonc b/cli/tests/testdata/lsp/deno.fmt.exclude.jsonc new file mode 100644 index 000000000..246a40316 --- /dev/null +++ b/cli/tests/testdata/lsp/deno.fmt.exclude.jsonc @@ -0,0 +1,16 @@ +{ + "fmt": { + "files": { + "exclude": [ + "ignored.ts" + ] + }, + "options": { + "useTabs": true, + "lineWidth": 40, + "indentWidth": 8, + "singleQuote": true, + "proseWrap": "always" + } + } +} diff --git a/cli/tests/testdata/lsp/deno.lint.exclude.jsonc b/cli/tests/testdata/lsp/deno.lint.exclude.jsonc new file mode 100644 index 000000000..89f6108ec --- /dev/null +++ b/cli/tests/testdata/lsp/deno.lint.exclude.jsonc @@ -0,0 +1,18 @@ +{ + "lint": { + "files": { + "exclude": [ + "ignored.ts" + ] + }, + "rules": { + "exclude": [ + "camelcase" + ], + "include": [ + "ban-untagged-todo" + ], + "tags": [] + } + } +} |
