@sablier/devkit 1.14.0 → 1.15.0

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 +4 -4
  2. package/package.json +2 -2
package/biome/base.jsonc CHANGED
@@ -16,7 +16,7 @@
16
16
  // granular rule customization. See ~/sablier/frontend/ui/biome.jsonc for a
17
17
  // complete example.
18
18
  {
19
- "$schema": "https://biomejs.dev/schemas/latest/schema.json",
19
+ "$schema": "https://biomejs.dev/schemas/2.4.0/schema.json",
20
20
  "assist": {
21
21
  "enabled": true,
22
22
  "actions": {
@@ -48,15 +48,15 @@
48
48
  "complexity": {
49
49
  "noImplicitCoercions": "error", // forbid `!!foo`, allow `Boolean(foo)`
50
50
  "noVoid": "off", // void is useful in some cases e.g. `useEffect` callbacks
51
- "useSimplifiedLogicExpression": "off" // the rule is cool but it gets agents stuck
51
+ "useSimplifiedLogicExpression": "off", // the rule is cool but it gets agents stuck
52
+ "noUselessUndefined": "off" // we want explicit undefined return values
52
53
  },
53
54
  "correctness": {
54
55
  "noUnusedImports": "off", // allow unused imports during development
55
56
  "noUnusedVariables": "error"
56
57
  },
57
58
  "nursery": {
58
- "noFloatingPromises": "error", // floating promises can lead to bugs
59
- "noUselessUndefined": "off" // we want explicit undefined return values
59
+ "noFloatingPromises": "error" // floating promises can lead to bugs
60
60
  },
61
61
  "performance": {
62
62
  "noBarrelFile": "off", // barrel exports lead to cleaner imports
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.14.0",
6
+ "version": "1.15.0",
7
7
  "author": {
8
8
  "name": "Sablier Labs Ltd",
9
9
  "url": "https://sablier.com"
@@ -12,7 +12,7 @@
12
12
  "url": "https://github.com/sablier-labs/devkit/issues"
13
13
  },
14
14
  "devDependencies": {
15
- "@biomejs/biome": "^2.3.10",
15
+ "@biomejs/biome": "^2.4.0",
16
16
  "prettier": "^3.7.4",
17
17
  "vitest": "^3.2.4"
18
18
  },