style: fix formatting via prettier

This commit is contained in:
2026-08-28 14:29:54 +05:00
parent 10278981ba
commit ada96b3534
124 changed files with 8211 additions and 5662 deletions
+16 -16
View File
@@ -1,24 +1,24 @@
export type CategoryId =
| 'convert'
| 'alpha'
| 'color'
| 'geometry'
| 'analyze'
| 'generate'
| 'filters'
| 'text';
| "convert"
| "alpha"
| "color"
| "geometry"
| "analyze"
| "generate"
| "filters"
| "text";
/**
* Порядок категорий в каталоге. Человекочитаемые названия живут в словарях
* i18n: секция categories, ключ = CategoryId.
*/
export const CATEGORIES: readonly CategoryId[] = [
'convert',
'alpha',
'color',
'geometry',
'filters',
'text',
'analyze',
'generate'
"convert",
"alpha",
"color",
"geometry",
"filters",
"text",
"analyze",
"generate",
];