Files
rc-portfolio/.prettierrc

24 lines
361 B
Plaintext
Raw Normal View History

2025-02-23 20:42:52 -05:00
{
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2,
"endOfLine": "auto",
2025-02-23 21:07:50 -05:00
"bracketSpacing": true,
2025-02-23 20:42:52 -05:00
"overrides": [
{
"files": "*.scss",
"options": {
"singleQuote": false
}
2025-02-23 21:07:50 -05:00
},
{
2025-02-23 20:42:52 -05:00
"files": "*.html",
"options": {
2025-02-23 21:07:50 -05:00
"printWidth": 120
2025-02-23 20:42:52 -05:00
}
}
]
2025-02-23 21:07:50 -05:00
}