Skip to content

Commit

Permalink
Merge pull request #50 from DataChefHQ/add-npm-eslint
Browse files Browse the repository at this point in the history
Add npm & eslint to devenv.nix for node.js setup
  • Loading branch information
shahinism authored Oct 6, 2024
2 parents 3b14789 + aa5b979 commit 4819524
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,17 @@

{% block languages %}
javascript.enable = true;
javascript.npm = {
enable = true;
install.enable = true;
};
typescript.enable = true;
{% endblock %}

{% block hooks %}
prettier.enable = true;
editorconfig-checker.enable = true;
eslint = {
enable = true;
};
{% endblock %}

0 comments on commit 4819524

Please sign in to comment.