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
2024-12-22 21:35:29 +01:00

14 lines
187 B
JavaScript

const foo = "baz123";
/* ✓ GOOD */
Vue.component("todo-item", {
// ...
});
/* ✗ BAD */
Vue.component("Todo", {
// ...
});
describe("foo", () => {});
describe("foo", () => {});