diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-09-03 17:01:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-03 17:01:58 +0200 |
| commit | d93570a6195d2be5fe448bb0d33d4f64e839676e (patch) | |
| tree | a44431235693f484308aad70cda66827605f4568 /cli/tests/testdata/lint/Deno.malformed2.jsonc | |
| parent | c3001fe280add8c695c288fe26b8f81b5f2f0261 (diff) | |
feat(lint): add support for config file and CLI flags for rules (#11776)
This commit adds support for following flags in deno lint subcommand:
--config - allows to load configuration file and parses "lint" object
--rules-tags=<tags> - allows specifying which set of tagged rules should be run
--rules-include=<rules> - allow specifying which rules should be run
--rules-exclude=<rules> - allow specifying which rules should not be run
Diffstat (limited to 'cli/tests/testdata/lint/Deno.malformed2.jsonc')
| -rw-r--r-- | cli/tests/testdata/lint/Deno.malformed2.jsonc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/cli/tests/testdata/lint/Deno.malformed2.jsonc b/cli/tests/testdata/lint/Deno.malformed2.jsonc new file mode 100644 index 000000000..473dafc4b --- /dev/null +++ b/cli/tests/testdata/lint/Deno.malformed2.jsonc @@ -0,0 +1,13 @@ +{ + "lint": { + "files": { + "include": ["lint/lint_with_config/"], + "exclude": ["lint/lint_with_config/b.ts"], + "dont_know_this_field": {} + }, + "rules": { + "tags": ["recommended"], + "include": ["ban-untagged-todo"] + } + } +} |
