adamantite 0.30.2 → 0.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,63 @@
1
+ // presets/format.ts
2
+ var format_default = {
3
+ arrowParens: "always",
4
+ bracketSameLine: false,
5
+ bracketSpacing: true,
6
+ embeddedLanguageFormatting: "auto",
7
+ endOfLine: "lf",
8
+ htmlWhitespaceSensitivity: "css",
9
+ insertFinalNewline: true,
10
+ jsdoc: {
11
+ addDefaultToDescription: true,
12
+ bracketSpacing: false,
13
+ capitalizeDescriptions: true,
14
+ commentLineStrategy: "multiline",
15
+ descriptionTag: false,
16
+ descriptionWithDot: false,
17
+ keepUnparsableExampleIndent: false,
18
+ lineWrappingStyle: "greedy",
19
+ preferCodeFences: false,
20
+ separateReturnsFromParam: true
21
+ },
22
+ jsxSingleQuote: false,
23
+ objectWrap: "preserve",
24
+ printWidth: 100,
25
+ quoteProps: "as-needed",
26
+ semi: false,
27
+ singleAttributePerLine: false,
28
+ singleQuote: false,
29
+ sortImports: {
30
+ groups: [
31
+ ["value-builtin", "type-import"],
32
+ ["value-external"],
33
+ ["type-internal"],
34
+ ["value-internal"],
35
+ ["type-subpath"],
36
+ ["value-subpath"],
37
+ ["type-parent", "type-sibling", "type-index"],
38
+ ["value-parent", "value-sibling", "value-index"],
39
+ ["unknown"]
40
+ ],
41
+ ignoreCase: true,
42
+ newlinesBetween: false,
43
+ order: "asc",
44
+ partitionByComment: true,
45
+ partitionByNewline: true,
46
+ sortSideEffects: false
47
+ },
48
+ sortPackageJson: {
49
+ sortScripts: true
50
+ },
51
+ sortTailwindcss: {
52
+ attributes: ["className", "class"],
53
+ functions: ["clsx", "cn", "cva", "tw", "twMerge"],
54
+ preserveDuplicates: false,
55
+ preserveWhitespace: false
56
+ },
57
+ tabWidth: 2,
58
+ trailingComma: "es5",
59
+ useTabs: false
60
+ };
61
+ export {
62
+ format_default as default
63
+ };