@bamboocss/eslint-plugin 1.12.1 → 1.12.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/index.cjs CHANGED
@@ -7,7 +7,7 @@ let _bamboocss_shared = require("@bamboocss/shared");
7
7
 
8
8
  //#region package.json
9
9
  var name = "@bamboocss/eslint-plugin";
10
- var version = "1.12.1";
10
+ var version = "1.12.2";
11
11
 
12
12
  //#endregion
13
13
  //#region src/utils/nodes.ts
@@ -2239,12 +2239,12 @@ const errorRules = [
2239
2239
  RULE_NAME$9
2240
2240
  ];
2241
2241
  const allRules = Object.fromEntries(Object.entries(rules).map(([name]) => {
2242
- return [`@bamboocss/${name}`, errorRules.includes(name) ? "error" : "warn"];
2242
+ return [`bamboo/${name}`, errorRules.includes(name) ? "error" : "warn"];
2243
2243
  }));
2244
2244
  var all_default = {
2245
2245
  parser: "@typescript-eslint/parser",
2246
2246
  parserOptions: { sourceType: "module" },
2247
- plugins: ["@bamboocss"],
2247
+ plugins: ["bamboo"],
2248
2248
  rules: allRules
2249
2249
  };
2250
2250
 
@@ -2253,18 +2253,18 @@ var all_default = {
2253
2253
  var recommended_default = {
2254
2254
  parser: "@typescript-eslint/parser",
2255
2255
  parserOptions: { sourceType: "module" },
2256
- plugins: ["@bamboocss"],
2256
+ plugins: ["bamboo"],
2257
2257
  rules: {
2258
- "@bamboocss/file-not-included": "error",
2259
- "@bamboocss/no-config-function-in-source": "error",
2260
- "@bamboocss/no-debug": "warn",
2261
- "@bamboocss/no-deprecated-tokens": "warn",
2262
- "@bamboocss/no-dynamic-styling": "warn",
2263
- "@bamboocss/no-hardcoded-color": "warn",
2264
- "@bamboocss/no-invalid-nesting": "error",
2265
- "@bamboocss/no-invalid-token-paths": "error",
2266
- "@bamboocss/no-property-renaming": "warn",
2267
- "@bamboocss/no-unsafe-token-fn-usage": "warn"
2258
+ "bamboo/file-not-included": "error",
2259
+ "bamboo/no-config-function-in-source": "error",
2260
+ "bamboo/no-debug": "warn",
2261
+ "bamboo/no-deprecated-tokens": "warn",
2262
+ "bamboo/no-dynamic-styling": "warn",
2263
+ "bamboo/no-hardcoded-color": "warn",
2264
+ "bamboo/no-invalid-nesting": "error",
2265
+ "bamboo/no-invalid-token-paths": "error",
2266
+ "bamboo/no-property-renaming": "warn",
2267
+ "bamboo/no-unsafe-token-fn-usage": "warn"
2268
2268
  }
2269
2269
  };
2270
2270