Files
tree-sitter-shellspec/tree-sitter.json
Ismo Vuorinen 41b3c5d345 chore: add prettier and format all files
- Install prettier ^3.6.2
- Add .prettierrc with project formatting rules
- Add .prettierignore to exclude generated files and dependencies
- Add npm scripts: format and format:check
- Format all files with prettier
2026-01-04 15:32:59 +02:00

36 lines
739 B
JSON

{
"grammars": [
{
"name": "shellspec",
"camelcase": "Shellspec",
"scope": "source.shellspec",
"path": ".",
"file-types": ["shellspec"],
"highlights": ["queries/highlights.scm"],
"locals": ["queries/locals.scm"],
"injection-regex": "shellspec"
}
],
"metadata": {
"version": "0.1.0",
"license": "MIT",
"description": "ShellSpec grammar for tree-sitter (extends bash)",
"authors": [
{
"name": "Ismo Vuorinen"
}
],
"links": {
"repository": "https://github.com/ivuorinen/tree-sitter-shellspec"
}
},
"bindings": {
"c": true,
"go": true,
"node": true,
"python": true,
"rust": true,
"swift": true
}
}