mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-17 19:00:02 -04:00
chore: query formatting
This commit is contained in:
parent
79975d6557
commit
57a8acf0c4
674 changed files with 18466 additions and 12648 deletions
|
|
@ -1,21 +1,41 @@
|
|||
; inherits: hcl
|
||||
|
||||
; Terraform specific references
|
||||
;
|
||||
;
|
||||
; local/module/data/var/output
|
||||
(expression (variable_expr (identifier) @variable.builtin (#any-of? @variable.builtin "data" "var" "local" "module" "output")) (get_attr (identifier) @variable.member))
|
||||
(expression
|
||||
(variable_expr
|
||||
(identifier) @variable.builtin
|
||||
(#any-of? @variable.builtin "data" "var" "local" "module" "output"))
|
||||
(get_attr
|
||||
(identifier) @variable.member))
|
||||
|
||||
; path.root/cwd/module
|
||||
(expression (variable_expr (identifier) @type.builtin (#eq? @type.builtin "path")) (get_attr (identifier) @variable.builtin (#any-of? @variable.builtin "root" "cwd" "module")))
|
||||
(expression
|
||||
(variable_expr
|
||||
(identifier) @type.builtin
|
||||
(#eq? @type.builtin "path"))
|
||||
(get_attr
|
||||
(identifier) @variable.builtin
|
||||
(#any-of? @variable.builtin "root" "cwd" "module")))
|
||||
|
||||
; terraform.workspace
|
||||
(expression (variable_expr (identifier) @type.builtin (#eq? @type.builtin "terraform")) (get_attr (identifier) @variable.builtin (#any-of? @variable.builtin "workspace")))
|
||||
(expression
|
||||
(variable_expr
|
||||
(identifier) @type.builtin
|
||||
(#eq? @type.builtin "terraform"))
|
||||
(get_attr
|
||||
(identifier) @variable.builtin
|
||||
(#any-of? @variable.builtin "workspace")))
|
||||
|
||||
; Terraform specific keywords
|
||||
|
||||
; FIXME: ideally only for identifiers under a `variable` block to minimize false positives
|
||||
((identifier) @type.builtin (#any-of? @type.builtin "bool" "string" "number" "object" "tuple" "list" "map" "set" "any"))
|
||||
(object_elem val: (expression
|
||||
(variable_expr
|
||||
(identifier) @type.builtin (#any-of? @type.builtin "bool" "string" "number" "object" "tuple" "list" "map" "set" "any"))))
|
||||
((identifier) @type.builtin
|
||||
(#any-of? @type.builtin "bool" "string" "number" "object" "tuple" "list" "map" "set" "any"))
|
||||
|
||||
(object_elem
|
||||
val:
|
||||
(expression
|
||||
(variable_expr
|
||||
(identifier) @type.builtin
|
||||
(#any-of? @type.builtin "bool" "string" "number" "object" "tuple" "list" "map" "set" "any"))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue