From c7d5e6d72b63f054f989ad3d499b44d780cb281e Mon Sep 17 00:00:00 2001 From: jimmyl <70376633+mc-oofert@users.noreply.github.com> Date: Sun, 11 Feb 2024 00:43:50 +0100 Subject: [PATCH] two new tgui commands (for coders) (#81381) ## About The Pull Request tgui:prettier-fix runs prettier fixes tgui:eslint-fix runs eslint fixes ## Why It's Good For The Game ![image](https://github.com/tgstation/tgstation/assets/70376633/dadf7047-5fc0-498b-93a5-53d03a706b73) --- tgui/package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tgui/package.json b/tgui/package.json index 1370aacc48a..bfbc5a34aba 100644 --- a/tgui/package.json +++ b/tgui/package.json @@ -17,7 +17,9 @@ "tgui:test": "jest --watch", "tgui:test-simple": "CI=true jest --color", "tgui:test-ci": "CI=true jest --color --collect-coverage", - "tgui:tsc": "tsc" + "tgui:tsc": "tsc", + "tgui:prettier-fix": "prettier --write .", + "tgui:eslint-fix": "eslint --fix packages --ext .js,.cjs,.ts,.tsx" }, "dependencies": { "@swc/core": "^1.3.100",