1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-24 20:55:49 +00:00

Prettier one line format in style .globals.ts files (#26991)

This commit is contained in:
Wendelin
2025-09-10 14:54:34 +02:00
committed by GitHub
parent a34ca3c085
commit 466115d916
5 changed files with 33 additions and 88 deletions

View File

@@ -1,3 +1,11 @@
export default {
trailingComma: "es5",
overrides: [
{
files: "*.globals.ts",
options: {
printWidth: 9999, // Effectively disables line wrapping for these files
},
},
],
};