diff options
| author | Satya Rohith <me@satyarohith.com> | 2021-09-14 17:46:51 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-14 17:46:51 +0530 |
| commit | bb7ee4f4450882419ac46378df882d243eb150da (patch) | |
| tree | 9988b101c62cfd088d001cabc6e45ebf5f6bd22b /cli/tests/testdata/lsp/code_action_ignore_lint_response.json | |
| parent | 6e3c8a4b058b774b7eb9eebebe8532d04c6fc61e (diff) | |
feat(lsp): ignore specific lint for entire file (#12023)
Diffstat (limited to 'cli/tests/testdata/lsp/code_action_ignore_lint_response.json')
| -rw-r--r-- | cli/tests/testdata/lsp/code_action_ignore_lint_response.json | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/cli/tests/testdata/lsp/code_action_ignore_lint_response.json b/cli/tests/testdata/lsp/code_action_ignore_lint_response.json index f5c24ec21..d15fccca9 100644 --- a/cli/tests/testdata/lsp/code_action_ignore_lint_response.json +++ b/cli/tests/testdata/lsp/code_action_ignore_lint_response.json @@ -30,6 +30,36 @@ } }, { + "title": "Disable prefer-const for the entire file", + "kind": "quickfix", + "diagnostics": [ + { + "range": { + "start": { "line": 1, "character": 5 }, + "end": { "line": 1, "character": 12 } + }, + "severity": 1, + "code": "prefer-const", + "source": "deno-lint", + "message": "'message' is never reassigned\nUse 'const' instead", + "relatedInformation": [] + } + ], + "edit": { + "changes": { + "file:///a/file.ts": [ + { + "range": { + "start": { "line": 0, "character": 0 }, + "end": { "line": 0, "character": 0 } + }, + "newText": "// deno-lint-ignore-file prefer-const\n" + } + ] + } + } + }, + { "title": "Ignore lint errors for the entire file", "kind": "quickfix", "diagnostics": [ |
