| Crates.io | tree-sitter-ini |
| lib.rs | tree-sitter-ini |
| version | 1.3.0 |
| created_at | 2025-05-27 08:35:53.657661+00 |
| updated_at | 2025-05-27 08:38:30.776398+00 |
| description | ini grammar for the tree-sitter parsing library |
| homepage | |
| repository | https://github.com/tree-sitter/tree-sitter-ini |
| max_upload_size | |
| id | 1690784 |
| size | 58,285 |
This grammar implements the INI format.
Example INI file:
[section 1]
some_key = some_value
another-key = another value
[another section]
# Keys may contain whitespace.
key 1 = value 1
# Value may be empty.
key_2 =
See test/corpus/ for more examples.
; or #) must start at column 1. Trailing comments are not supported yet. #13\) are not supported.setting_value includes whitespace. #3.
Should values exclude surrounding whitespace?Steps to perform a release:
patch/minor/major as appropriate).
npm version patch -m "release %s"
npm version --no-git-tag-version prerelease --preid dev && git add package*.json && git commit -m bump
git push --follow-tags