主要功能: - 修改RequirementModal支持12个订单班选择 - 添加OrderClassIconMap图标映射组件 - Store中添加selectedOrderClass状态管理 - WorkflowPage支持传递orderClass参数 - web_result添加URL参数切换功能 - 创建order-class-handler.js动态处理页面主题 技术改进: - 创建软链接关联订单班数据目录 - 生成wenlu.json和food.json数据结构 - 删除重复的web_result目录 - 添加测试页面test-order-class.html 影响范围: - 展会策划系统现支持12个订单班 - 结果展示页面自动适配不同订单班主题 - 用户可选择不同行业生成对应方案 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
116 lines
4.0 KiB
JavaScript
116 lines
4.0 KiB
JavaScript
/**
|
|
* @fileoverview Require or disallow newline at the end of files
|
|
* @author Nodeca Team <https://github.com/nodeca>
|
|
* @deprecated in ESLint v8.53.0
|
|
*/
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** @type {import('../shared/types').Rule} */
|
|
module.exports = {
|
|
meta: {
|
|
deprecated: true,
|
|
replacedBy: [],
|
|
type: "layout",
|
|
|
|
docs: {
|
|
description: "Require or disallow newline at the end of files",
|
|
recommended: false,
|
|
url: "https://eslint.org/docs/latest/rules/eol-last"
|
|
},
|
|
|
|
fixable: "whitespace",
|
|
|
|
schema: [
|
|
{
|
|
enum: ["always", "never", "unix", "windows"]
|
|
}
|
|
],
|
|
|
|
messages: {
|
|
missing: "Newline required at end of file but not found.",
|
|
unexpected: "Newline not allowed at end of file."
|
|
}
|
|
},
|
|
create(context) {
|
|
|
|
//--------------------------------------------------------------------------
|
|
// Public
|
|
//--------------------------------------------------------------------------
|
|
|
|
return {
|
|
Program: function checkBadEOF(node) {
|
|
const sourceCode = context.sourceCode,
|
|
src = sourceCode.getText(),
|
|
lastLine = sourceCode.lines[sourceCode.lines.length - 1],
|
|
location = {
|
|
column: lastLine.length,
|
|
line: sourceCode.lines.length
|
|
},
|
|
LF = "\n",
|
|
CRLF = `\r${LF}`,
|
|
endsWithNewline = src.endsWith(LF);
|
|
|
|
/*
|
|
* Empty source is always valid: No content in file so we don't
|
|
* need to lint for a newline on the last line of content.
|
|
*/
|
|
if (!src.length) {
|
|
return;
|
|
}
|
|
|
|
let mode = context.options[0] || "always",
|
|
appendCRLF = false;
|
|
|
|
if (mode === "unix") {
|
|
|
|
// `"unix"` should behave exactly as `"always"`
|
|
mode = "always";
|
|
}
|
|
if (mode === "windows") {
|
|
|
|
// `"windows"` should behave exactly as `"always"`, but append CRLF in the fixer for backwards compatibility
|
|
mode = "always";
|
|
appendCRLF = true;
|
|
}
|
|
if (mode === "always" && !endsWithNewline) {
|
|
|
|
// File is not newline-terminated, but should be
|
|
context.report({
|
|
node,
|
|
loc: location,
|
|
messageId: "missing",
|
|
fix(fixer) {
|
|
return fixer.insertTextAfterRange([0, src.length], appendCRLF ? CRLF : LF);
|
|
}
|
|
});
|
|
} else if (mode === "never" && endsWithNewline) {
|
|
|
|
const secondLastLine = sourceCode.lines[sourceCode.lines.length - 2];
|
|
|
|
// File is newline-terminated, but shouldn't be
|
|
context.report({
|
|
node,
|
|
loc: {
|
|
start: { line: sourceCode.lines.length - 1, column: secondLastLine.length },
|
|
end: { line: sourceCode.lines.length, column: 0 }
|
|
},
|
|
messageId: "unexpected",
|
|
fix(fixer) {
|
|
const finalEOLs = /(?:\r?\n)+$/u,
|
|
match = finalEOLs.exec(sourceCode.text),
|
|
start = match.index,
|
|
end = sourceCode.text.length;
|
|
|
|
return fixer.replaceTextRange([start, end], "");
|
|
}
|
|
});
|
|
}
|
|
}
|
|
};
|
|
}
|
|
};
|