chore: initial tree-sitter scaffold
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* @file Tumblr grammar for tree-sitter
|
||||
* @author Oscar Wallberg <oscar.wallberg@outlook.com>
|
||||
* @license Apache-2.0
|
||||
*/
|
||||
|
||||
/// <reference types="tree-sitter-cli/dsl" />
|
||||
// @ts-check
|
||||
|
||||
export default grammar({
|
||||
name: "tumblr",
|
||||
|
||||
rules: {
|
||||
// TODO: add the actual grammar rules
|
||||
source_file: $ => "hello"
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user