diff --git a/.gitignore b/.gitignore index 31e337a..9f1b477 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +/**/*.vsix /**/node_modules/ /**/result* /.direnv diff --git a/README.md b/README.md index 7404958..72060b6 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,12 @@ Humans care about the content, machines about the style! +- ✔️ **Native** + + We integrate with common code editors: + + - [Alejandra extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=kamadorueda.alejandra) + ## Getting started Let's get Alejandra on our systems: diff --git a/integrations/vscode/README.md b/integrations/vscode/README.md index 2932f3b..c0aa3bf 100644 --- a/integrations/vscode/README.md +++ b/integrations/vscode/README.md @@ -25,7 +25,7 @@ with [Alejandra](https://github.com/kamadorueda/alejandra). Enjoy! -# Troubleshooting +## Troubleshooting If you encounter a problem please let us know in the diff --git a/integrations/vscode/jsconfig.json b/integrations/vscode/jsconfig.json index 1e19ca7..6698843 100644 --- a/integrations/vscode/jsconfig.json +++ b/integrations/vscode/jsconfig.json @@ -1,13 +1,9 @@ { "compilerOptions": { "checkJs": true, - "lib": [ - "ES2020" - ], + "lib": ["ES2020"], "module": "CommonJS", "target": "ES2020" }, - "exclude": [ - "node_modules" - ] + "exclude": ["node_modules"] } diff --git a/treefmt.toml b/treefmt.toml index 3589490..600cd49 100644 --- a/treefmt.toml +++ b/treefmt.toml @@ -7,7 +7,7 @@ options = ["run", "--"] [formatter.prettier] command = "prettier" -includes = ["*.json", "*.md", "*.toml", "*.yaml"] +includes = ["*.js", "*.json", "*.md", "*.toml", "*.yaml"] options = ["--plugin", "prettier-plugin-toml", "--write"] [formatter.rust]