tangled
alpha
login
or
join now
biscui.tech
/
dotfiles
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
wip
biscui.tech
2 years ago
b498d321
d0742259
+8
-5
1 changed file
expand all
collapse all
unified
split
.config
helix
languages.toml
+8
-5
.config/helix/languages.toml
···
3
3
args = ["--stdio"]
4
4
5
5
[language-server.eslint.config]
6
6
-
# codeActionsOnSave = { mode = "all", "source.fixAll.eslint" = true }
7
7
-
# format = { enable = true }
6
6
+
codeActionsOnSave = { mode = "all", "source.fixAll.eslint" = true }
7
7
+
format = { enable = true }
8
8
nodePath = ""
9
9
-
# quiet = false
9
9
+
quiet = false
10
10
rulesCustomizations = []
11
11
run = "onType"
12
12
validate = "on"
···
48
48
49
49
[[language]]
50
50
name = "typescript"
51
51
-
scope = "source.ts"
52
52
-
injection-regex = "(ts|typescript)"
51
51
+
# scope = "source.ts"
52
52
+
# injection-regex = "(ts|typescript)"
53
53
language-servers = [ "typescript-language-server", "eslint" ]
54
54
# language-servers = [ { except-features = ["format"], name = "typescript-language-server" }, "eslint" ]
55
55
formatter = { command = "prettier", args = [ "--parser", "babel-ts" ] }
56
56
# formatter = {command = "prettier"}
57
57
# formatter = { command = "dprint", args = [ "fmt", "--stdin", "typescript" ] }
58
58
+
# roots = ["package-lock.json", "tsconfig.json", ".prettierrc.json"]
58
59
auto-format = true
59
60
file-types = ["ts", "mts", "cts"]
60
61
···
63
64
language-servers = [ "typescript-language-server", "eslint" ]
64
65
formatter = { command = "prettier", args = [ "--parser", "babel-ts" ] }
65
66
# formatter = { command = "dprint", args = [ "fmt", "--stdin", "tsx" ] }
67
67
+
# roots = ["package-lock.json", "tsconfig.json", ".prettierrc.json"]
66
68
auto-format = true
69
69
+
file-types = ["tsx", "mtsx", "ctsx"]
67
70
68
71
[[language]]
69
72
name = "javascript"