Skip to content

Commit

Permalink
pure copy
Browse files Browse the repository at this point in the history
  • Loading branch information
morgante committed Jul 10, 2024
1 parent dc00177 commit 1079d33
Show file tree
Hide file tree
Showing 73 changed files with 32,491 additions and 28,452 deletions.
36 changes: 32 additions & 4 deletions resources/language-metavariables/tree-sitter-yaml/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,38 @@ root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
max_line_length = 120
insert_final_newline = true
trim_trailing_whitespace = true

[corpus/*]
trim_trailing_whitespace = false
[*.{json,toml,yml,gyp}]
indent_style = space
indent_size = 2

[*.js]
indent_style = space
indent_size = 2

[*.{c,cc,h}]
indent_style = space
indent_size = 4

[*.rs]
indent_style = space
indent_size = 4

[*.{py,pyi}]
indent_style = space
indent_size = 4

[*.swift]
indent_style = space
indent_size = 4

[*.go]
indent_style = tab
indent_size = 8

[Makefile]
indent_style = tab
indent_size = 8
11 changes: 11 additions & 0 deletions resources/language-metavariables/tree-sitter-yaml/.gitattributes
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 resources/language-metavariables/tree-sitter-yaml/.gitignore
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 resources/language-metavariables/tree-sitter-yaml/.travis.yml

This file was deleted.

69 changes: 0 additions & 69 deletions resources/language-metavariables/tree-sitter-yaml/CHANGELOG.md

This file was deleted.

29 changes: 15 additions & 14 deletions resources/language-metavariables/tree-sitter-yaml/Cargo.toml
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"
5 changes: 2 additions & 3 deletions resources/language-metavariables/tree-sitter-yaml/LICENSE
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
Expand Down
113 changes: 113 additions & 0 deletions resources/language-metavariables/tree-sitter-yaml/Makefile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

47 changes: 47 additions & 0 deletions 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.

Loading

0 comments on commit 1079d33

Please sign in to comment.