-
Notifications
You must be signed in to change notification settings - Fork 378
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
40 lines (39 loc) · 2.18 KB
/
build.gradle.kts
File metadata and controls
40 lines (39 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
plugins {
id("codegpt.java-conventions")
}
dependencies {
implementation(libs.tree.sitter)
implementation("io.github.bonede:tree-sitter-erlang:0.1.0a")
implementation("io.github.bonede:tree-sitter-elixir:0.2.0")
implementation("io.github.bonede:tree-sitter-dockerfile:0.2.0")
implementation("io.github.bonede:tree-sitter-dart:master-a")
implementation("io.github.bonede:tree-sitter-css:0.23.1")
implementation("io.github.bonede:tree-sitter-cpp:0.23.4")
implementation("io.github.bonede:tree-sitter-c-sharp:0.23.1")
implementation("io.github.bonede:tree-sitter-fortran:master-a")
implementation("io.github.bonede:tree-sitter-gitattributes:0.1.6")
implementation("io.github.bonede:tree-sitter-go:0.23.3")
implementation("io.github.bonede:tree-sitter-graphql:master-a")
implementation("io.github.bonede:tree-sitter-html:0.23.2")
implementation("io.github.bonede:tree-sitter-javascript:0.23.1")
implementation("io.github.bonede:tree-sitter-json:0.24.8")
implementation("io.github.bonede:tree-sitter-kotlin:0.3.8.1")
implementation("io.github.bonede:tree-sitter-latex:0.3.0a")
implementation("io.github.bonede:tree-sitter-lua:2.1.3a")
implementation("io.github.bonede:tree-sitter-m68k:0.2.7a")
implementation("io.github.bonede:tree-sitter-markdown:0.7.1a")
implementation("io.github.bonede:tree-sitter-objc:main-a")
implementation("io.github.bonede:tree-sitter-perl:1.1.0")
implementation("io.github.bonede:tree-sitter-ruby:0.23.1")
implementation("io.github.bonede:tree-sitter-rust:0.23.1")
implementation("io.github.bonede:tree-sitter-scala:0.23.3")
implementation("io.github.bonede:tree-sitter-scss:1.0.0a")
implementation("io.github.bonede:tree-sitter-svelte:0.11.0a")
implementation("io.github.bonede:tree-sitter-swift:0.5.0")
implementation("io.github.bonede:tree-sitter-yaml:0.5.0a")
implementation("io.github.bonede:tree-sitter-java:0.23.4")
implementation("io.github.bonede:tree-sitter-python:0.23.4")
implementation("io.github.bonede:tree-sitter-php:0.23.11")
implementation("io.github.bonede:tree-sitter-typescript:0.21.1")
implementation("io.github.bonede:tree-sitter-query:0.3.0")
}