Files
Bubberstation/.prettierignore
Jeremiah a5a4b83a25 Sets prettier to run on the repo (#91379)
Prettier (an auto formatter) is set to only run within the tgui folder
currently. This removes that limitation, allowing it to automatically
format all supported files in the repo (.js, .html, .yml
[etc](https://prettier.io/docs/))

I made a few exceptions for bundled and generated files
I'm of the opinion that code should look uniform and am lazy enough to
want CTRL-S to format files without having to think beyond that
2025-06-05 19:13:02 -04:00

20 lines
267 B
Plaintext

# Directories
changelogs
data
font-awesome
jquery
juke
## Tgui
node_modules
.yarn
# Avoid running on any bundles.
tgui/public
# Running it on tgui.html is fine, however.
!/tgui/public/tgui.html
# Specific files
package-lock.json
# File names / types
*.min.*
*.pnp.*