aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2025-02-09 13:19:34 +0100
committerChristian Clason <c.clason@uni-graz.at>2025-05-12 18:43:40 +0200
commita9f34d5a768b2afcece98ba31345602a71f42fcb (patch)
tree33a0d3d3868966729792ca28074c292713d83b7b /CONTRIBUTING.md
parentfix(ci): update to changed neovim release name (diff)
downloadnvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar
nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar.gz
nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar.bz2
nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar.lz
nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar.xz
nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar.zst
nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.zip
feat(parsers): rework tiers
* stable: updates follow semver releases (todo) * unstable: updates follow HEAD (default) * unmaintained: no automatic updates * unsupported: no updates, cannot be installed
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 0ea7dcdbf..d82c9cd7b 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -19,16 +19,15 @@ To add a new parser, edit the following files:
zimbu = {
install_info = {
url = 'https://github.com/zimbulang/tree-sitter-zimbu', -- git repo; use `path` for local path
- files = { 'src/parser.c' }, -- note that some parsers also require src/scanner.c
+ revision = 'v2.1', -- tag or commit hash, will be updated automatically
-- optional entries:
branch = 'develop', -- only needed if different from default branch
location = 'parser', -- only needed if the parser is in subdirectory of a "monorepo"
- revision = 'v2.1', -- tag or commit hash, will be updated automatically
generate = true, -- only needed if repo does not contain pre-generated src/parser.c
generate_from_json = true, -- only needed if grammar.js has npm-installed dependencies
},
maintainers = { '@me' }, -- the _query_ maintainers
- tier = 3, -- community-contributed parser
+ tier = 1, -- stable: track versioned releases
-- optional entries:
requires = { 'vim' }, -- if the queries inherit from another language
readme_note = "an example language",