mirror of
https://github.com/denoland/deno.git
synced 2025-03-09 13:49:37 -04:00
17 lines
267 B
JavaScript
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", () => {});
|