config: Configure Prettier to use 4 spaces for indentation

Updated .prettierrc to set 'useTabs' to false and 'tabWidth' to 4, ensuring that Prettier formats code with 4-space indentation instead of tabs, as per user preference.
This commit is contained in:
Scott Idem
2025-11-18 18:39:35 -05:00
parent 6aa97a9f6b
commit 6d1f9989d0

View File

@@ -1,5 +1,6 @@
{
"useTabs": true,
"useTabs": false,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,