@qntx/oxfmt 1.0.3 → 1.0.4
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.
- package/dist/index.d.mts +2 -45
- package/package.json +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,48 +1,5 @@
|
|
|
1
|
+
import { OxfmtConfig } from "oxfmt";
|
|
1
2
|
//#region src/index.d.ts
|
|
2
|
-
export declare const fmt:
|
|
3
|
-
arrowParens: "always";
|
|
4
|
-
bracketSameLine: false;
|
|
5
|
-
bracketSpacing: true;
|
|
6
|
-
embeddedLanguageFormatting: "auto";
|
|
7
|
-
endOfLine: "lf";
|
|
8
|
-
experimentalOperatorPosition: "end";
|
|
9
|
-
htmlWhitespaceSensitivity: "css";
|
|
10
|
-
ignorePatterns: string[];
|
|
11
|
-
insertFinalNewline: true;
|
|
12
|
-
jsdoc: true;
|
|
13
|
-
jsxSingleQuote: false;
|
|
14
|
-
objectWrap: "preserve";
|
|
15
|
-
overrides: never[];
|
|
16
|
-
printWidth: number;
|
|
17
|
-
proseWrap: "preserve";
|
|
18
|
-
quoteProps: "as-needed";
|
|
19
|
-
semi: true;
|
|
20
|
-
singleAttributePerLine: false;
|
|
21
|
-
singleQuote: false;
|
|
22
|
-
sortImports: {
|
|
23
|
-
customGroups: never[];
|
|
24
|
-
ignoreCase: true;
|
|
25
|
-
internalPattern: string[];
|
|
26
|
-
newlinesBetween: true;
|
|
27
|
-
order: "asc";
|
|
28
|
-
partitionByComment: false;
|
|
29
|
-
partitionByNewline: false;
|
|
30
|
-
sortSideEffects: false;
|
|
31
|
-
};
|
|
32
|
-
sortPackageJson: {
|
|
33
|
-
sortScripts: false;
|
|
34
|
-
};
|
|
35
|
-
sortTailwindcss: {
|
|
36
|
-
functions: string[];
|
|
37
|
-
attributes: never[];
|
|
38
|
-
preserveDuplicates: false;
|
|
39
|
-
preserveWhitespace: false;
|
|
40
|
-
};
|
|
41
|
-
svelte: false;
|
|
42
|
-
tabWidth: number;
|
|
43
|
-
trailingComma: "all";
|
|
44
|
-
useTabs: false;
|
|
45
|
-
vueIndentScriptAndStyle: false;
|
|
46
|
-
};
|
|
3
|
+
export declare const fmt: Required<OxfmtConfig>;
|
|
47
4
|
//#endregion
|
|
48
5
|
export { fmt as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qntx/oxfmt",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Shareable Oxfmt config for Vite+ apps and TypeScript libraries",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"format",
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"dev": "vp pack --watch",
|
|
39
39
|
"test": "bun test",
|
|
40
40
|
"check": "vp check",
|
|
41
|
+
"typecheck": "tsc --noEmit",
|
|
41
42
|
"prepublishOnly": "vp run build"
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|