@sablier/devkit 1.10.0 → 1.10.1

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.
Files changed (2) hide show
  1. package/biome/base.jsonc +2 -1
  2. package/package.json +1 -1
package/biome/base.jsonc CHANGED
@@ -41,7 +41,8 @@
41
41
  "recommended": true,
42
42
  "complexity": {
43
43
  "noImplicitCoercions": "error", // forbid `!!foo`, allow `Boolean(foo)`
44
- "noVoid": "off" // void is useful in some cases e.g. `useEffect` callbacks
44
+ "noVoid": "off", // void is useful in some cases e.g. `useEffect` callbacks
45
+ "useSimplifiedLogicExpression": "off" // the rule is cool but it gets agents stuck
45
46
  },
46
47
  "correctness": {
47
48
  "noUnusedImports": "off", // allow unused imports during development
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Configuration files and reusable scripts for Sablier repositories",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
- "version": "1.10.0",
6
+ "version": "1.10.1",
7
7
  "author": {
8
8
  "name": "Sablier Labs Ltd",
9
9
  "url": "https://sablier.com"