eslint-plugin-tailwind-variants 2.1.1 → 2.1.2
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/src/index.d.ts +5 -16
- package/dist/src/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.js +3 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -4,22 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
/** @type {PluginConfigs} */
|
|
6
6
|
export const configs: PluginConfigs;
|
|
7
|
-
|
|
8
|
-
configs: PluginConfigs;
|
|
9
|
-
meta: ({
|
|
10
|
-
name?: string | undefined;
|
|
11
|
-
version?: string | undefined;
|
|
12
|
-
} & {
|
|
13
|
-
namespace?: string | undefined;
|
|
14
|
-
}) | undefined;
|
|
15
|
-
rules: {
|
|
16
|
-
"limited-inline-classes": import("eslint").Rule.RuleModule;
|
|
17
|
-
"require-variants-call-styles-name": import("eslint").Rule.RuleModule;
|
|
18
|
-
"require-variants-suffix": import("eslint").Rule.RuleModule;
|
|
19
|
-
"sort-custom-properties": import("eslint").Rule.RuleModule;
|
|
20
|
-
};
|
|
21
|
-
};
|
|
22
|
-
export default _default;
|
|
7
|
+
export default defaultExport;
|
|
23
8
|
export type PluginConfigs = {
|
|
24
9
|
/**
|
|
25
10
|
* Recommended ESLint configurations for this plugin.
|
|
@@ -28,4 +13,8 @@ export type PluginConfigs = {
|
|
|
28
13
|
};
|
|
29
14
|
/** @type {import("eslint").ESLint.Plugin} */
|
|
30
15
|
export const plugin: import("eslint").ESLint.Plugin;
|
|
16
|
+
/** @type {import("eslint").ESLint.Plugin & { configs: PluginConfigs }} */
|
|
17
|
+
declare const defaultExport: import("eslint").ESLint.Plugin & {
|
|
18
|
+
configs: PluginConfigs;
|
|
19
|
+
};
|
|
31
20
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/src/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.js"],"names":[],"mappings":"AAmBA;;;GAGG;AAEH,4BAA4B;AAC5B,sBADW,aAAa,CA2BtB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.js"],"names":[],"mappings":"AAmBA;;;GAGG;AAEH,4BAA4B;AAC5B,sBADW,aAAa,CA2BtB;;;;;;iBA9BY,OAAO,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE;;AAX9C,6CAA6C;AAC7C,qBADW,OAAO,QAAQ,EAAE,MAAM,CAAC,MAAM,CAOvC;AAsCF,0EAA0E;AAC1E,6BADW,OAAO,QAAQ,EAAE,MAAM,CAAC,MAAM,GAAG;IAAE,OAAO,EAAE,aAAa,CAAA;CAAE,CAKpE"}
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -54,8 +54,10 @@ export const configs = {
|
|
|
54
54
|
export { plugin };
|
|
55
55
|
|
|
56
56
|
/** @type {import("eslint").ESLint.Plugin & { configs: PluginConfigs }} */
|
|
57
|
-
|
|
57
|
+
const defaultExport = {
|
|
58
58
|
configs,
|
|
59
59
|
meta: plugin.meta,
|
|
60
60
|
rules,
|
|
61
61
|
};
|
|
62
|
+
|
|
63
|
+
export default defaultExport;
|