Files
tree-sitter-emm/grammar.js
2025-10-17 21:07:51 +08:00

18 lines
298 B
JavaScript

/**
* @file Emm grammar for tree-sitter
* @author xiteng <LiuXiteng72@gmail.com>
* @license MIT
*/
/// <reference types="tree-sitter-cli/dsl" />
// @ts-check
module.exports = grammar({
name: "emm",
rules: {
// TODO: add the actual grammar rules
source_file: $ => "hello"
}
});