@debbl/eslint-config 3.8.5 → 3.8.8
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 +7 -108
- package/dist/chunk-VCB7MQKB.js +60 -0
- package/dist/index.cjs +8916 -56
- package/dist/index.d.cts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.es2015-7TBD5FJT.js +8781 -0
- package/dist/index.js +42 -6
- package/package.json +15 -21
package/dist/index.d.cts
CHANGED
|
@@ -195,7 +195,10 @@ interface OptionsConfig extends OptionsComponentExts {
|
|
|
195
195
|
prettier?: boolean | Omit<GetConfigOption<PrettierConfig>, "tailwindcss">;
|
|
196
196
|
/**
|
|
197
197
|
* Enable Tailwind CSS support.
|
|
198
|
-
*
|
|
198
|
+
*
|
|
199
|
+
* if set to "prettier", it will use `prettier-plugin-tailwindcss`
|
|
200
|
+
* @see https://github.com/tailwindlabs/prettier-plugin-tailwindcss
|
|
201
|
+
*
|
|
199
202
|
* @default false
|
|
200
203
|
*/
|
|
201
204
|
tailwindcss?: boolean | "prettier";
|
package/dist/index.d.ts
CHANGED
|
@@ -195,7 +195,10 @@ interface OptionsConfig extends OptionsComponentExts {
|
|
|
195
195
|
prettier?: boolean | Omit<GetConfigOption<PrettierConfig>, "tailwindcss">;
|
|
196
196
|
/**
|
|
197
197
|
* Enable Tailwind CSS support.
|
|
198
|
-
*
|
|
198
|
+
*
|
|
199
|
+
* if set to "prettier", it will use `prettier-plugin-tailwindcss`
|
|
200
|
+
* @see https://github.com/tailwindlabs/prettier-plugin-tailwindcss
|
|
201
|
+
*
|
|
199
202
|
* @default false
|
|
200
203
|
*/
|
|
201
204
|
tailwindcss?: boolean | "prettier";
|