Add prettier config to language server

This commit is contained in:
Josh Gross
2022-11-29 17:41:13 -05:00
parent c699535fb0
commit 3b9c6711eb
3 changed files with 18 additions and 2 deletions
+4 -2
View File
@@ -33,7 +33,9 @@
"prepublishOnly": "npm run build && npm run test",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"test-watch": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --watch",
"watch": "tsc --build tsconfig.build.json --watch"
"watch": "tsc --build tsconfig.build.json --watch",
"prettier": "prettier .",
"prettier-fix": "prettier --write ."
},
"dependencies": {
"@github/actions-languageservice": "^0.1.18",
@@ -55,4 +57,4 @@
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}
}