tree-sitter-highlight-schema
Advanced tools
Comparing version 0.1.1 to 0.1.2
{ | ||
"name": "tree-sitter-highlight-schema", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "JSON schema for highlighting properties used in Tree-sitter parsers", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -6,2 +6,6 @@ module.exports = | ||
"enum": [ | ||
// names of attributes (e.g. `class` in `<div class=something>`) | ||
"attribute", | ||
// comments (e.g. this line of this file) | ||
"comment", | ||
@@ -33,7 +37,11 @@ | ||
// keywords with special meaning (e.g. `if`, `class`) | ||
"keyword", | ||
// numbers | ||
// numbers (e.g. `123`, `0xA0FFD1`) | ||
"number", | ||
// Operators (e.g. `+`, `===`) | ||
"operator", | ||
// names of properties (e.g. `age` in `person.age`) | ||
@@ -47,4 +55,4 @@ "property", | ||
"punctuation", | ||
// punctuation characters with extra emphasis | ||
"punctuation.bracket", | ||
"punctuation.delimiter", | ||
"punctuation.special", | ||
@@ -58,2 +66,5 @@ | ||
// names of tags (e.g. `div` in `<div></div>`) | ||
"tag", | ||
// names of types | ||
@@ -60,0 +71,0 @@ "type", |
2285
57