mirror of
https://github.com/RGBCube/alejandra
synced 2025-07-31 04:27:45 +00:00
feat: document vscode extension
This commit is contained in:
parent
1589612726
commit
4cdac7bbbe
5 changed files with 11 additions and 8 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
|
/**/*.vsix
|
||||||
/**/node_modules/
|
/**/node_modules/
|
||||||
/**/result*
|
/**/result*
|
||||||
/.direnv
|
/.direnv
|
||||||
|
|
|
@ -75,6 +75,12 @@
|
||||||
Humans care about the content,
|
Humans care about the content,
|
||||||
machines about the style!
|
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
|
## Getting started
|
||||||
|
|
||||||
Let's get Alejandra on our systems:
|
Let's get Alejandra on our systems:
|
||||||
|
|
|
@ -25,7 +25,7 @@ with [Alejandra](https://github.com/kamadorueda/alejandra).
|
||||||
|
|
||||||
Enjoy!
|
Enjoy!
|
||||||
|
|
||||||
# Troubleshooting
|
## Troubleshooting
|
||||||
|
|
||||||
If you encounter a problem
|
If you encounter a problem
|
||||||
please let us know in the
|
please let us know in the
|
||||||
|
|
|
@ -1,13 +1,9 @@
|
||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"checkJs": true,
|
"checkJs": true,
|
||||||
"lib": [
|
"lib": ["ES2020"],
|
||||||
"ES2020"
|
|
||||||
],
|
|
||||||
"module": "CommonJS",
|
"module": "CommonJS",
|
||||||
"target": "ES2020"
|
"target": "ES2020"
|
||||||
},
|
},
|
||||||
"exclude": [
|
"exclude": ["node_modules"]
|
||||||
"node_modules"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@ options = ["run", "--"]
|
||||||
|
|
||||||
[formatter.prettier]
|
[formatter.prettier]
|
||||||
command = "prettier"
|
command = "prettier"
|
||||||
includes = ["*.json", "*.md", "*.toml", "*.yaml"]
|
includes = ["*.js", "*.json", "*.md", "*.toml", "*.yaml"]
|
||||||
options = ["--plugin", "prettier-plugin-toml", "--write"]
|
options = ["--plugin", "prettier-plugin-toml", "--write"]
|
||||||
|
|
||||||
[formatter.rust]
|
[formatter.rust]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue