Add kebab-case detection to JQHTML redundant class rule

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-12-11 21:16:29 +00:00
parent ed8f24b26d
commit 84136be744
3 changed files with 168 additions and 31 deletions

View File

@@ -9,7 +9,7 @@ $expand_depth - How many levels deep to expand
$label - Optional key/index label for this node
$show_class_names - If true, display class names for named object instances
--%>
<Define:JS_Tree_Debug_Node tag="div" class="js-tree-debug-node">
<Define:JS_Tree_Debug_Node tag="div">
<%
const class_name = this.args.show_class_names ? JS_Tree_Debug_Node.get_class_name(this.args.data) : null;
const relationships = JS_Tree_Debug_Node.get_object_relationships(this.args.data);

View File

@@ -13,7 +13,8 @@
border-radius: 4px;
background: #fafafa;
.js-tree-debug-node {
.js-tree-debug-node,
.JS_Tree_Debug_Node {
margin-left: 0;
}