@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.mjs CHANGED
@@ -7,7 +7,7 @@ import { getArbitraryValue } from "@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
@@ -2398,12 +2398,12 @@ var init_all = __esmMin((() => {
2398
2398
  RULE_NAME$9
2399
2399
  ];
2400
2400
  allRules = Object.fromEntries(Object.entries(rules).map(([name]) => {
2401
- return [`@bamboocss/${name}`, errorRules.includes(name) ? "error" : "warn"];
2401
+ return [`bamboo/${name}`, errorRules.includes(name) ? "error" : "warn"];
2402
2402
  }));
2403
2403
  all_default = {
2404
2404
  parser: "@typescript-eslint/parser",
2405
2405
  parserOptions: { sourceType: "module" },
2406
- plugins: ["@bamboocss"],
2406
+ plugins: ["bamboo"],
2407
2407
  rules: allRules
2408
2408
  };
2409
2409
  }));
@@ -2415,18 +2415,18 @@ var init_recommended = __esmMin((() => {
2415
2415
  recommended_default = {
2416
2416
  parser: "@typescript-eslint/parser",
2417
2417
  parserOptions: { sourceType: "module" },
2418
- plugins: ["@bamboocss"],
2418
+ plugins: ["bamboo"],
2419
2419
  rules: {
2420
- "@bamboocss/file-not-included": "error",
2421
- "@bamboocss/no-config-function-in-source": "error",
2422
- "@bamboocss/no-debug": "warn",
2423
- "@bamboocss/no-deprecated-tokens": "warn",
2424
- "@bamboocss/no-dynamic-styling": "warn",
2425
- "@bamboocss/no-hardcoded-color": "warn",
2426
- "@bamboocss/no-invalid-nesting": "error",
2427
- "@bamboocss/no-invalid-token-paths": "error",
2428
- "@bamboocss/no-property-renaming": "warn",
2429
- "@bamboocss/no-unsafe-token-fn-usage": "warn"
2420
+ "bamboo/file-not-included": "error",
2421
+ "bamboo/no-config-function-in-source": "error",
2422
+ "bamboo/no-debug": "warn",
2423
+ "bamboo/no-deprecated-tokens": "warn",
2424
+ "bamboo/no-dynamic-styling": "warn",
2425
+ "bamboo/no-hardcoded-color": "warn",
2426
+ "bamboo/no-invalid-nesting": "error",
2427
+ "bamboo/no-invalid-token-paths": "error",
2428
+ "bamboo/no-property-renaming": "warn",
2429
+ "bamboo/no-unsafe-token-fn-usage": "warn"
2430
2430
  }
2431
2431
  };
2432
2432
  }));