mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-12 08:36:00 +01:00
74dd1e48fe
## About The Pull Request I was debugging when I found that holding alt spams the UI with log messages. The source UI causing this also wrote in old ES5 syntax . I updated our linter to error when you write JS code like an ancient scribe (circa 2009). I also bumped some dependencies and fixed all the linter warnings in tgui:lint. The alt-click-drag functionality still works:  ## Why It's Good For The Game Less linter errors Automatically flags/updates ES5 JS code ## Changelog N/A
11 lines
185 B
JSON
11 lines
185 B
JSON
{
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.3.10",
|
|
"prettier": "^3.7.4"
|
|
},
|
|
"scripts": {
|
|
"tgui:fix": "biome check --write --unsafe tgui",
|
|
"tgui:lint": "biome lint tgui"
|
|
}
|
|
}
|