2024-05-15 12:12:42 +02:00
|
|
|
{
|
|
|
|
|
"formatter": {
|
|
|
|
|
"enabled": true,
|
|
|
|
|
"formatWithErrors": false,
|
|
|
|
|
"indentStyle": "tab",
|
|
|
|
|
"indentWidth": 2,
|
|
|
|
|
"lineEnding": "lf",
|
|
|
|
|
"lineWidth": 80,
|
|
|
|
|
"attributePosition": "auto",
|
2025-07-28 10:24:29 +02:00
|
|
|
"includes": [
|
|
|
|
|
"**",
|
|
|
|
|
"!**/.DS_Store",
|
|
|
|
|
"!**/node_modules",
|
|
|
|
|
"!**/npm-debug.log",
|
|
|
|
|
"!**/dist",
|
|
|
|
|
"!**/*/package-lock.json",
|
|
|
|
|
"!**/yarn.lock",
|
|
|
|
|
"!**/.vscode",
|
|
|
|
|
"!**/.idea",
|
|
|
|
|
"!**/test/ts/**/*.js",
|
|
|
|
|
"!**/coverage",
|
|
|
|
|
"!**/*.sw\\[op\\]",
|
|
|
|
|
"!**/*.log",
|
|
|
|
|
"!**/package/",
|
|
|
|
|
"!**/preact-*.tgz",
|
|
|
|
|
"!**/preact.tgz",
|
|
|
|
|
"!**/package-lock.json"
|
2024-05-15 12:12:42 +02:00
|
|
|
]
|
|
|
|
|
},
|
2025-07-28 10:24:29 +02:00
|
|
|
"assist": { "actions": { "source": { "organizeImports": "on" } } },
|
2024-05-15 12:12:42 +02:00
|
|
|
"linter": { "enabled": true, "rules": { "recommended": true } },
|
|
|
|
|
"javascript": {
|
|
|
|
|
"formatter": {
|
|
|
|
|
"jsxQuoteStyle": "double",
|
|
|
|
|
"quoteProperties": "asNeeded",
|
2024-07-04 19:28:11 +02:00
|
|
|
"trailingCommas": "none",
|
2024-05-15 12:12:42 +02:00
|
|
|
"semicolons": "always",
|
|
|
|
|
"arrowParentheses": "asNeeded",
|
|
|
|
|
"bracketSpacing": true,
|
|
|
|
|
"bracketSameLine": false,
|
|
|
|
|
"quoteStyle": "single",
|
|
|
|
|
"attributePosition": "auto"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"overrides": [
|
|
|
|
|
{
|
2025-07-28 10:24:29 +02:00
|
|
|
"includes": ["**/*.json", "**/.*rc/**", "**/*.yml"],
|
2024-05-15 12:12:42 +02:00
|
|
|
"formatter": { "indentWidth": 2, "indentStyle": "space" }
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|