/** * Copyright (c) 2025 Ofri Peretz * Licensed under the MIT License. Use of this source code is governed by the * MIT license that can be found in the LICENSE file. */ /** * oxlint sub-export. * * Consumers wire oxlint to this entry via: * { "jsPlugins": ["eslint-plugin-secure-coding/oxlint"] } * * oxlint's JS plugin loader does `require('eslint-plugin-secure-coding/oxlint')` and reads * `.rules` off the result. The compiled output of `export = plugin` is * `module.exports = plugin`, which gives oxlint the plugin object directly * (`{ meta, rules }`) — no wrapper, no `.default` indirection. * * Generated by scripts/generate-oxlint-shims.mjs. Do not edit by hand. */ import { plugin } from './index'; export = plugin;