diff options
Diffstat (limited to 'tests/specs/lint/with_glob_config/with_glob_config_unix.out')
-rw-r--r-- | tests/specs/lint/with_glob_config/with_glob_config_unix.out | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/tests/specs/lint/with_glob_config/with_glob_config_unix.out b/tests/specs/lint/with_glob_config/with_glob_config_unix.out new file mode 100644 index 000000000..fad285cbe --- /dev/null +++ b/tests/specs/lint/with_glob_config/with_glob_config_unix.out @@ -0,0 +1,94 @@ +[UNORDERED_START] +error[no-unused-vars]: `foo` is never used + --> [WILDLINE]lint/with_glob_config/glob/nested/fizz/bar.ts:1:10 + | +1 | function foo() { + | ^^^ + = hint: If this is intentional, prefix it with an underscore like `_foo` + + docs: https://lint.deno.land/rules/no-unused-vars + + +error[no-unused-vars]: `foo` is never used + --> [WILDLINE]lint/with_glob_config/glob/nested/foo/foo.ts:1:10 + | +1 | function foo() { + | ^^^ + = hint: If this is intentional, prefix it with an underscore like `_foo` + + docs: https://lint.deno.land/rules/no-unused-vars + + +error[no-unused-vars]: `foo` is never used + --> [WILDLINE]lint/with_glob_config/glob/nested/fizz/foo.ts:1:10 + | +1 | function foo() { + | ^^^ + = hint: If this is intentional, prefix it with an underscore like `_foo` + + docs: https://lint.deno.land/rules/no-unused-vars + + +error[no-unused-vars]: `foo` is never used + --> [WILDLINE]lint/with_glob_config/glob/nested/foo/bar.ts:1:10 + | +1 | function foo() { + | ^^^ + = hint: If this is intentional, prefix it with an underscore like `_foo` + + docs: https://lint.deno.land/rules/no-unused-vars + + +error[no-unused-vars]: `foo` is never used + --> [WILDLINE]lint/with_glob_config/glob/data/test1.js:1:10 + | +1 | function foo() { + | ^^^ + = hint: If this is intentional, prefix it with an underscore like `_foo` + + docs: https://lint.deno.land/rules/no-unused-vars + + +error[no-unused-vars]: `foo` is never used + --> [WILDLINE]lint/with_glob_config/glob/nested/foo/fizz.ts:1:10 + | +1 | function foo() { + | ^^^ + = hint: If this is intentional, prefix it with an underscore like `_foo` + + docs: https://lint.deno.land/rules/no-unused-vars + + +error[no-unused-vars]: `foo` is never used + --> [WILDLINE]lint/with_glob_config/glob/nested/fizz/fizz.ts:1:10 + | +1 | function foo() { + | ^^^ + = hint: If this is intentional, prefix it with an underscore like `_foo` + + docs: https://lint.deno.land/rules/no-unused-vars + + +error[no-unused-vars]: `foo` is never used + --> [WILDLINE]lint/with_glob_config/glob/pages/[id].ts:1:10 + | +1 | function foo() { + | ^^^ + = hint: If this is intentional, prefix it with an underscore like `_foo` + + docs: https://lint.deno.land/rules/no-unused-vars + + +error[no-unused-vars]: `foo` is never used + --> [WILDLINE]lint/with_glob_config/glob/data/test1.ts:1:10 + | +1 | function foo() { + | ^^^ + = hint: If this is intentional, prefix it with an underscore like `_foo` + + docs: https://lint.deno.land/rules/no-unused-vars +[UNORDERED_END] + + +Found 9 problems +Checked 9 files |