Files
psp_panel/.prettierrc.json
T

45 lines
957 B
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": [
{
2025-12-04 21:07:18 +03:30
"files": "*.html",
"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
}
},
{
2025-12-04 21:07:18 +03:30
"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
}
},
{
2025-12-04 21:07:18 +03:30
"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"
],
"printWidth": 100,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
2024-12-30 17:41:32 +03:00
}