SourceTermAnalysisSystem_vue/node_modules/eslint-plugin-n/lib/rules/shebang.js
2026-05-15 10:22:44 +08:00

19 lines
430 B
JavaScript

/**
* @fileoverview the rule has been renamed to `hashbang`. Please use `hashbang` instead.
* @deprecated
* @author 唯然<weiran.zsd@outlook.com>
*/
"use strict"
const hashbang = require("./hashbang.js")
module.exports = {
meta: {
...hashbang.meta,
deprecated: true,
replacedBy: ["n/hashbang"],
docs: { ...hashbang.meta?.docs, recommended: false },
},
create: hashbang.create,
}