mirror of
https://github.com/ivuorinen/tree-sitter-shellspec.git
synced 2026-01-26 03:34:03 +00:00
- 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
36 lines
739 B
JSON
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
|
|
}
|
|
}
|