详细说明: - 添加了V2版本的工作流页面和结果页面 - 更新了Serena记忆文件 - 添加了详细实施计划文档 - 优化了Vite配置 - 更新了项目文档CLAUDE.md - 构建了演示系统的dist版本 - 包含了exhibition-demo的完整依赖
65 lines
1.7 KiB
JavaScript
65 lines
1.7 KiB
JavaScript
/**
|
|
* @fileoverview Rule to disallow use of void operator.
|
|
* @author Mike Sidorov
|
|
*/
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** @type {import('../shared/types').Rule} */
|
|
module.exports = {
|
|
meta: {
|
|
type: "suggestion",
|
|
|
|
docs: {
|
|
description: "Disallow `void` operators",
|
|
recommended: false,
|
|
url: "https://eslint.org/docs/latest/rules/no-void"
|
|
},
|
|
|
|
messages: {
|
|
noVoid: "Expected 'undefined' and instead saw 'void'."
|
|
},
|
|
|
|
schema: [
|
|
{
|
|
type: "object",
|
|
properties: {
|
|
allowAsStatement: {
|
|
type: "boolean",
|
|
default: false
|
|
}
|
|
},
|
|
additionalProperties: false
|
|
}
|
|
]
|
|
},
|
|
|
|
create(context) {
|
|
const allowAsStatement =
|
|
context.options[0] && context.options[0].allowAsStatement;
|
|
|
|
//--------------------------------------------------------------------------
|
|
// Public
|
|
//--------------------------------------------------------------------------
|
|
|
|
return {
|
|
'UnaryExpression[operator="void"]'(node) {
|
|
if (
|
|
allowAsStatement &&
|
|
node.parent &&
|
|
node.parent.type === "ExpressionStatement"
|
|
) {
|
|
return;
|
|
}
|
|
context.report({
|
|
node,
|
|
messageId: "noVoid"
|
|
});
|
|
}
|
|
};
|
|
}
|
|
};
|