@dvashim/biome-config 1.3.0 → 1.3.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.
package/README.md CHANGED
@@ -179,7 +179,7 @@ The most opinionated configuration. Enables all recommended rules plus **120+ op
179
179
 
180
180
  - **complexity** (12 rules) — Monitors cognitive complexity, function length, nested test suites, and logic expressions. Warns on `forEach`, implicit coercions, `void`, and useless patterns.
181
181
 
182
- - **correctness** (12 rules) — Ensures no undeclared variables/dependencies/imports, proper React patterns (`noReactPropAssignments`, `noNestedComponentDefinitions`), Node.js guards (`noNodejsModules`, `noProcessGlobal`, `noGlobalDirnameFilename`), and JSON import attributes.
182
+ - **correctness** (12 rules) — Ensures no undeclared variables/dependencies, proper React patterns (`noReactPropAssignments`, `noNestedComponentDefinitions`), Node.js guards (`noNodejsModules`, `noProcessGlobal`, `noGlobalDirnameFilename`), and JSON import attributes. `noUnresolvedImports` is disabled since TypeScript already performs these checks.
183
183
 
184
184
  - **nursery** (63 rules) — Opts into all experimental rules. Highlights include:
185
185
  - **Errors:** `noJsxPropsBind`, `noLeakedRender`, `noMisusedPromises`, `noMultiAssign`, `noParametersOnlyUsedInRecursion`
@@ -105,7 +105,7 @@
105
105
  "noReactPropAssignments": "warn",
106
106
  "noUndeclaredDependencies": "warn",
107
107
  "noUndeclaredVariables": "warn",
108
- "noUnresolvedImports": "warn",
108
+ "noUnresolvedImports": "off",
109
109
  "useImportExtensions": "off",
110
110
  "useJsonImportAttributes": "warn",
111
111
  "useSingleJsDocAsterisk": "warn",
@@ -100,7 +100,7 @@
100
100
  "noReactPropAssignments": "warn",
101
101
  "noUndeclaredDependencies": "warn",
102
102
  "noUndeclaredVariables": "warn",
103
- "noUnresolvedImports": "warn",
103
+ "noUnresolvedImports": "off",
104
104
  "useImportExtensions": "off",
105
105
  "useJsonImportAttributes": "warn",
106
106
  "useSingleJsDocAsterisk": "warn",
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "license": "MIT",
4
4
  "name": "@dvashim/biome-config",
5
5
  "type": "module",
6
- "version": "1.3.0",
6
+ "version": "1.3.1",
7
7
  "author": {
8
8
  "email": "aleksei@dvashim.dev",
9
9
  "name": "Aleksei Reznichenko"