Files
psp_panel/.prettierrc.json
T

50 lines
1.1 KiB
JSON
Raw Normal View History

2024-12-30 17:41:32 +03:00
{
2025-12-04 21:07:18 +03:30
"arrowParens": "always",
2024-12-30 17:41:32 +03:00
"bracketSameLine": false,
2025-12-04 21:07:18 +03:30
"bracketSpacing": true,
"endOfLine": "lf",
2024-12-30 17:41:32 +03:00
"overrides": [
{
"files": "**/*.html",
2025-12-04 21:07:18 +03:30
"options": {
"bracketSameLine": true,
"printWidth": 120
}
},
{
"files": "**/*.scss",
2024-12-30 17:41:32 +03:00
"options": {
2025-12-04 21:07:18 +03:30
"printWidth": 120,
"singleQuote": false
2024-12-30 17:41:32 +03:00
}
},
{
"files": "**/*.less",
2024-12-30 17:41:32 +03:00
"options": {
2025-12-04 21:07:18 +03:30
"printWidth": 120,
"singleQuote": false
2024-12-30 17:41:32 +03:00
}
},
{
"files": "**/*.json",
2024-12-30 17:41:32 +03:00
"options": {
2025-12-04 21:07:18 +03:30
"printWidth": 100
2024-12-30 17:41:32 +03:00
}
}
2025-12-04 21:07:18 +03:30
],
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-tailwindcss"
2025-12-04 21:07:18 +03:30
],
"printWidth": 100,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"tailwindAttributes": [
"class",
"ngClass"
],
2025-12-04 21:07:18 +03:30
"trailingComma": "es5",
"useTabs": false
2024-12-30 17:41:32 +03:00
}