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