mirror of
https://github.com/denoland/deno.git
synced 2025-02-08 07:16:56 -05:00
10 lines
193 B
JavaScript
10 lines
193 B
JavaScript
const NAME = "test-plugin";
|
|
|
|
Deno.core.ops.op_register_lint_plugin(
|
|
NAME,
|
|
function create(context) {
|
|
console.log("Hello from test plugin");
|
|
},
|
|
);
|
|
|
|
console.log("Loaded plugin", NAME);
|