Skip to content

Commit 23e6be0

Browse files
committed
patch tsconfig to ignore .direnv, enable astro content intellisense, remove unused files
1 parent ee0b0bd commit 23e6be0

File tree

5 files changed

+6
-16
lines changed

5 files changed

+6
-16
lines changed

.eslintrc.js

Lines changed: 0 additions & 12 deletions
This file was deleted.

.helix/languages.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
[language-servers]
2-
astro-ls = { command = "astro-ls", args = ["--stdio"] }
1+
[language-servers.astro-ls]
2+
command = "astro-ls"
3+
args = ["--stdio"]
4+
config = { contentIntellisense = true }
35

46
[[language]]
57
name = "astro"

.nvmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

shell.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ pkgs.mkShell {
33
packages = [
44
pkgs.bun
55
pkgs.biome
6+
pkgs.astro-language-server
67
pkgs.nodejs-slim # required by astro to find sharp
78
];
89
}

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
}
2121
},
2222
"include": [".astro/types.d.ts", "**/*"],
23-
"exclude": ["dist"]
23+
"exclude": ["dist", ".direnv"]
2424
}

0 commit comments

Comments
 (0)