- Hover provider showing entity information and type - Go-to-definition (F12) for entity references - Basic IFC file validation (ISO-10303-21 header check) - Entity parsing with regex-based detection - Proper CommonJS module system (avoiding ES module issues) This replaces the broken baseline from ifc-developer-tools which had: - Non-functional ES module configuration - Circular dependency issues - Parser crashes - Non-working PositionVisitor Built on Microsoft's LSP example template for a clean, maintainable foundation. Next: Add hierarchical entity dependency tree in hover tooltip."
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
var utils = require('../utils.js');
|
|
require('eslint-visitor-keys');
|
|
require('espree');
|
|
require('estraverse');
|
|
|
|
var wrapRegex = utils.createRule({
|
|
name: "wrap-regex",
|
|
package: "js",
|
|
meta: {
|
|
type: "layout",
|
|
docs: {
|
|
description: "Require parenthesis around regex literals"
|
|
},
|
|
schema: [],
|
|
fixable: "code",
|
|
messages: {
|
|
requireParens: "Wrap the regexp literal in parens to disambiguate the slash."
|
|
}
|
|
},
|
|
create(context) {
|
|
const sourceCode = context.sourceCode;
|
|
return {
|
|
Literal(node) {
|
|
const token = sourceCode.getFirstToken(node);
|
|
const nodeType = token.type;
|
|
if (nodeType === "RegularExpression") {
|
|
const beforeToken = sourceCode.getTokenBefore(node);
|
|
const afterToken = sourceCode.getTokenAfter(node);
|
|
const { parent } = node;
|
|
if (parent.type === "MemberExpression" && parent.object === node && !(beforeToken && beforeToken.value === "(" && afterToken && afterToken.value === ")")) {
|
|
context.report({
|
|
node,
|
|
messageId: "requireParens",
|
|
fix: (fixer) => fixer.replaceText(node, `(${sourceCode.getText(node)})`)
|
|
});
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|
|
});
|
|
|
|
module.exports = wrapRegex;
|