1
Fork 0
mirror of https://github.com/RGBCube/alejandra synced 2025-08-01 04:57:44 +00:00

feat: finish extension

This commit is contained in:
Kevin Amado 2022-02-12 19:10:01 -05:00
parent 63b45b881e
commit 6bee230d57
No known key found for this signature in database
GPG key ID: FFF341057F503148
4 changed files with 142 additions and 47 deletions

View file

@ -10,25 +10,40 @@
"categories": [
"Formatters"
],
"configuration": {
"contributes": {
"configuration": {
"properties": {
"alejandra.program": {
"default": "alejandra",
"description": "Specifies an alternative full path to the Alejandra executable.",
"type": [
"string"
]
}
},
"title": "Alejandra"
},
"configurationDefaults": {
"[nix]": {
"editor.defaultFormatter": "kamadorueda.alejandra",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": false
},
"alejandra.program": "alejandra"
},
"languages": [
{
"aliases": [
"nix",
"Nix"
],
"extensions": [
".nix"
],
"id": "nix"
}
],
"properties": {
"alejandra.program": {
"default": "alejandra",
"description": "Specifies an alternative full path to the Alejandra executable.",
"type": [
"string"
]
}
},
"title": "Alejandra"
]
},
"description": "The Uncompromising Nix Code Formatter",
"devDependencies": {
@ -45,6 +60,7 @@
"license": "Unlicense",
"main": "./extension.js",
"name": "alejandra",
"publisher": "kamadorueda",
"repository": {
"type": "git",
"url": "https://github.com/kamadorueda/alejandra"