@savvy-web/lint-staged 0.4.2 → 0.4.3

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/376.js CHANGED
@@ -1738,7 +1738,7 @@ const rootCommand = Command.make("savvy-lint").pipe(Command.withSubcommands([
1738
1738
  ]));
1739
1739
  const cli = Command.run(rootCommand, {
1740
1740
  name: "savvy-lint",
1741
- version: "0.4.2"
1741
+ version: "0.4.3"
1742
1742
  });
1743
1743
  function runCli() {
1744
1744
  const main = Effect.suspend(()=>cli(process.argv)).pipe(Effect.provide(NodeContext.layer));
package/biome/silk.jsonc CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
2
+ "$schema": "https://biomejs.dev/schemas/2.4.1/schema.json",
3
3
  "assist": {
4
4
  "actions": {
5
5
  "source": {
@@ -58,10 +58,10 @@
58
58
  "options": {
59
59
  "forceJsExtensions": true
60
60
  }
61
- }
61
+ },
62
+ "noUnresolvedImports": "off"
62
63
  },
63
64
  "nursery": {
64
- "noImportCycles": "error",
65
65
  "useExplicitType": "off"
66
66
  },
67
67
  "recommended": true,
@@ -76,6 +76,8 @@
76
76
  "useNodejsImportProtocol": "error"
77
77
  },
78
78
  "suspicious": {
79
+ "noDuplicateDependencies": "error",
80
+ "noImportCycles": "error",
79
81
  "noBiomeFirstException": "error",
80
82
  "noDuplicateObjectKeys": "error",
81
83
  "noQuickfixBiome": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/lint-staged",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "private": false,
5
5
  "description": "Composable, configurable lint-staged handlers for pre-commit hooks. Provides reusable handlers for Biome, Markdown, YAML, TypeScript, and more.",
6
6
  "keywords": [
@@ -56,13 +56,14 @@
56
56
  "yaml-lint": "^1.7.0"
57
57
  },
58
58
  "peerDependencies": {
59
- "@biomejs/biome": "2.3.14",
59
+ "@biomejs/biome": "2.4.1",
60
60
  "@types/node": "^25.2.3",
61
61
  "@typescript/native-preview": "^7.0.0-dev.20260215.1",
62
62
  "husky": "^9.1.7",
63
63
  "lint-staged": "^16.2.7",
64
64
  "markdownlint-cli2": "^0.20.0",
65
65
  "markdownlint-cli2-formatter-codequality": "^0.0.7",
66
+ "turbo": "^2.8.9",
66
67
  "typescript": "^5.9.3"
67
68
  },
68
69
  "peerDependenciesMeta": {
@@ -87,6 +88,9 @@
87
88
  "markdownlint-cli2-formatter-codequality": {
88
89
  "optional": false
89
90
  },
91
+ "turbo": {
92
+ "optional": false
93
+ },
90
94
  "typescript": {
91
95
  "optional": false
92
96
  }