0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-09 13:49:37 -04:00
deno/test_lint_plugins/foo.js
Bartek Iwańczuk 2fddd68d41
lint
2025-01-07 01:05:48 +01:00

17 lines
267 B
JavaScript

// Copyright 2018-2025 the Deno authors. MIT license.
// deno-lint-ignore-file
const foo = "baz123";
/* ✓ GOOD */
Vue.component("todo-item", {
// ...
});
/* ✗ BAD */
Vue.component("Todo", {
// ...
});
describe("foo", () => {});
describe("foo", () => {});