fix: specify eslint filetypes
This commit is contained in:
parent
57257c7390
commit
ace865839d
1 changed files with 14 additions and 1 deletions
15
package.nix
15
package.nix
|
@ -1246,7 +1246,20 @@ nixvim.makeNixvim {
|
|||
};
|
||||
texlab.enable = true;
|
||||
clangd.enable = true;
|
||||
eslint.enable = true;
|
||||
eslint = {
|
||||
enable = true;
|
||||
filetypes = [
|
||||
"js"
|
||||
"ts"
|
||||
"typescript"
|
||||
"javascript"
|
||||
"tsx"
|
||||
"jsx"
|
||||
"typescriptreact"
|
||||
"javascriptreact"
|
||||
"svelte"
|
||||
];
|
||||
};
|
||||
tailwindcss.enable = true;
|
||||
graphql = {
|
||||
filetypes = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue