@will-stone/ox-config 1.0.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.
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # My Oxlint and Oxfmt configs
@@ -0,0 +1,21 @@
1
+ import { OxfmtConfig } from "oxfmt";
2
+ import { OxlintConfig } from "oxlint";
3
+
4
+ //#region src/oxfmt.d.ts
5
+ type Options$1 = {
6
+ tailwindcss?: boolean | {
7
+ config?: string;
8
+ };
9
+ };
10
+ declare const oxfmtConfig: (options?: Options$1) => OxfmtConfig;
11
+ //#endregion
12
+ //#region src/oxlint/model.d.ts
13
+ type Options = {
14
+ react: boolean;
15
+ tailwind: boolean;
16
+ };
17
+ //#endregion
18
+ //#region src/oxlint/oxlint.d.ts
19
+ declare function oxlintConfig(options?: Options): OxlintConfig;
20
+ //#endregion
21
+ export { oxfmtConfig, oxlintConfig };