-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
73 changed files
with
32,491 additions
and
28,452 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
resources/language-metavariables/tree-sitter-yaml/.gitattributes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
* text eol=lf | ||
|
||
src/*.json linguist-generated | ||
src/parser.c linguist-generated | ||
src/tree_sitter/* linguist-generated | ||
|
||
bindings/** linguist-generated | ||
binding.gyp linguist-generated | ||
setup.py linguist-generated | ||
Makefile linguist-generated | ||
Package.swift linguist-generated |
38 changes: 38 additions & 0 deletions
38
resources/language-metavariables/tree-sitter-yaml/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Rust artifacts | ||
Cargo.lock | ||
target/ | ||
|
||
# Node artifacts | ||
build/ | ||
prebuilds/ | ||
node_modules/ | ||
*.tgz | ||
|
||
# Swift artifacts | ||
.build/ | ||
|
||
# Go artifacts | ||
go.sum | ||
_obj/ | ||
|
||
# Python artifacts | ||
.venv/ | ||
dist/ | ||
*.egg-info | ||
*.whl | ||
|
||
# C artifacts | ||
*.a | ||
*.so | ||
*.so.* | ||
*.dylib | ||
*.dll | ||
*.pc | ||
|
||
# Example dirs | ||
/examples/*/ | ||
|
||
# Grammar volatiles | ||
*.wasm | ||
*.obj | ||
*.o |
13 changes: 0 additions & 13 deletions
13
resources/language-metavariables/tree-sitter-yaml/.travis.yml
This file was deleted.
Oops, something went wrong.
69 changes: 0 additions & 69 deletions
69
resources/language-metavariables/tree-sitter-yaml/CHANGELOG.md
This file was deleted.
Oops, something went wrong.
29 changes: 15 additions & 14 deletions
29
resources/language-metavariables/tree-sitter-yaml/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
[package] | ||
name = "tree-sitter-yaml" | ||
description = "yaml grammar for the tree-sitter parsing library" | ||
version = "0.0.1" | ||
keywords = ["incremental", "parsing", "yaml"] | ||
categories = ["parsing", "text-editors"] | ||
repository = "https://github.com/tree-sitter/tree-sitter-yaml" | ||
edition = "2018" | ||
description = "YAML grammar for tree-sitter" | ||
version = "0.6.1" | ||
license = "MIT" | ||
readme = "README.md" | ||
keywords = ["incremental", "parsing", "tree-sitter", "yaml"] | ||
categories = ["parsing", "text-editors"] | ||
authors = [ | ||
"Ika <[email protected]>", | ||
"Amaan Qureshi <[email protected]>" | ||
] | ||
repository = "https://github.com/tree-sitter-grammars/tree-sitter-yaml" | ||
edition = "2021" | ||
autoexamples = false | ||
|
||
build = "bindings/rust/build.rs" | ||
include = [ | ||
"bindings/rust/*", | ||
"grammar.js", | ||
"queries/*", | ||
"src/*", | ||
] | ||
include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] | ||
|
||
[lib] | ||
path = "bindings/rust/lib.rs" | ||
|
||
[dependencies] | ||
tree-sitter = "~0.20.10" | ||
tree-sitter = "~0.20" | ||
|
||
[build-dependencies] | ||
cc = "1.0" | ||
cc = "1.0.92" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) Ika <[email protected]> (https://github.com/ikatyang) | ||
Copyright (c) 2024 tree-sitter-grammars contributors | ||
Copyright (c) 2019-2021 Ika | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
113 changes: 113 additions & 0 deletions
113
resources/language-metavariables/tree-sitter-yaml/Makefile
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
47 changes: 47 additions & 0 deletions
47
resources/language-metavariables/tree-sitter-yaml/Package.swift
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.