hello world
@@ -114,6 +120,8 @@ whitespace.jsx:8:16 lint/nursery/useSortedClasses FIXABLE ━━━━━━ i This rule is still being actively worked on, so it may be missing features or have rough edges. Visit https://github.com/biomejs/biome/issues/1274 for more information or to report possible bugs. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + i Unsafe fix: Sort the classes. 6 6 │empty with spaces
@@ -140,6 +148,8 @@ whitespace.jsx:9:16 lint/nursery/useSortedClasses FIXABLE ━━━━━━ i This rule is still being actively worked on, so it may be missing features or have rough edges. Visit https://github.com/biomejs/biome/issues/1274 for more information or to report possible bugs. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + i Unsafe fix: Sort the classes. 7 7 │empty without spaces
@@ -165,6 +175,8 @@ whitespace.jsx:12:18 lint/nursery/useSortedClasses FIXABLE ━━━━━━ i This rule is still being actively worked on, so it may be missing features or have rough edges. Visit https://github.com/biomejs/biome/issues/1274 for more information or to report possible bugs. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + i Unsafe fix: Sort the classes. 10 10 │ @@ -191,6 +203,8 @@ whitespace.jsx:13:18 lint/nursery/useSortedClasses FIXABLE ━━━━━━ i This rule is still being actively worked on, so it may be missing features or have rough edges. Visit https://github.com/biomejs/biome/issues/1274 for more information or to report possible bugs. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + i Unsafe fix: Sort the classes. 11 11 │ {/* Template literal cases */} @@ -216,6 +230,8 @@ whitespace.jsx:14:18 lint/nursery/useSortedClasses FIXABLE ━━━━━━ i This rule is still being actively worked on, so it may be missing features or have rough edges. Visit https://github.com/biomejs/biome/issues/1274 for more information or to report possible bugs. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + i Unsafe fix: Sort the classes. 12 12 │template literal trailing
diff --git a/crates/biome_js_analyze/tests/specs/nursery/useSpread/invalid.js.snap b/crates/biome_js_analyze/tests/specs/nursery/useSpread/invalid.js.snap index 1326196e8b23..efa1ab7a803d 100644 --- a/crates/biome_js_analyze/tests/specs/nursery/useSpread/invalid.js.snap +++ b/crates/biome_js_analyze/tests/specs/nursery/useSpread/invalid.js.snap @@ -26,6 +26,8 @@ invalid.js:3:1 lint/nursery/useSpread FIXABLE ━━━━━━━━━━ 4 │ foo.apply(null, [1, 2, 3]); 5 │ foo.apply(undefined, args); + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + i Unsafe fix: Use the spread operator. 1 1 │ // should generate diagnostics @@ -49,6 +51,8 @@ invalid.js:4:1 lint/nursery/useSpread FIXABLE ━━━━━━━━━━ 5 │ foo.apply(undefined, args); 6 │ obj.foo.apply(obj, args); + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + i Unsafe fix: Use the spread operator. 2 2 │ @@ -73,6 +77,8 @@ invalid.js:5:1 lint/nursery/useSpread FIXABLE ━━━━━━━━━━ 6 │ obj.foo.apply(obj, args); 7 │ + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + i Unsafe fix: Use the spread operator. 3 3 │ foo.apply(null, args); @@ -96,6 +102,8 @@ invalid.js:6:1 lint/nursery/useSpread FIXABLE ━━━━━━━━━━ │ ^^^^^^^^^^^^^^^^^^^^^^^^ 7 │ + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + i Unsafe fix: Use the spread operator. 4 4 │ foo.apply(null, [1, 2, 3]); diff --git a/crates/biome_js_analyze/tests/specs/nursery/useVueConsistentDefinePropsDeclaration/invalid-a.vue.snap b/crates/biome_js_analyze/tests/specs/nursery/useVueConsistentDefinePropsDeclaration/invalid-a.vue.snap index 5b3412dc8b5e..65496fbe64b1 100644 --- a/crates/biome_js_analyze/tests/specs/nursery/useVueConsistentDefinePropsDeclaration/invalid-a.vue.snap +++ b/crates/biome_js_analyze/tests/specs/nursery/useVueConsistentDefinePropsDeclaration/invalid-a.vue.snap @@ -1,6 +1,5 @@ --- source: crates/biome_js_analyze/tests/spec_tests.rs -assertion_line: 152 expression: invalid-a.vue --- # Input @@ -26,5 +25,7 @@ invalid-a.vue:1:15 lint/nursery/useVueConsistentDefinePropsDeclaration ━━━ i It should be defined using type declaration like defineProps<...>(). + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_js_analyze/tests/specs/nursery/useVueConsistentDefinePropsDeclaration/invalid-b.vue.snap b/crates/biome_js_analyze/tests/specs/nursery/useVueConsistentDefinePropsDeclaration/invalid-b.vue.snap index 743702c7b61c..458d777caa66 100644 --- a/crates/biome_js_analyze/tests/specs/nursery/useVueConsistentDefinePropsDeclaration/invalid-b.vue.snap +++ b/crates/biome_js_analyze/tests/specs/nursery/useVueConsistentDefinePropsDeclaration/invalid-b.vue.snap @@ -1,6 +1,5 @@ --- source: crates/biome_js_analyze/tests/spec_tests.rs -assertion_line: 152 expression: invalid-b.vue --- # Input @@ -26,5 +25,7 @@ invalid-b.vue:1:15 lint/nursery/useVueConsistentDefinePropsDeclaration ━━━ i It should be defined using runtime declaration like defineProps(...). + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_js_analyze/tests/specs/nursery/useVueConsistentDefinePropsDeclaration/invalid-c.vue.snap b/crates/biome_js_analyze/tests/specs/nursery/useVueConsistentDefinePropsDeclaration/invalid-c.vue.snap index 8daa6dc49be3..5562dea7ed69 100644 --- a/crates/biome_js_analyze/tests/specs/nursery/useVueConsistentDefinePropsDeclaration/invalid-c.vue.snap +++ b/crates/biome_js_analyze/tests/specs/nursery/useVueConsistentDefinePropsDeclaration/invalid-c.vue.snap @@ -1,6 +1,5 @@ --- source: crates/biome_js_analyze/tests/spec_tests.rs -assertion_line: 152 expression: invalid-c.vue --- # Input @@ -26,5 +25,7 @@ invalid-c.vue:1:15 lint/nursery/useVueConsistentDefinePropsDeclaration ━━━ i It should be defined using type declaration like defineProps<...>(). + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_js_analyze/tests/specs/nursery/useVueConsistentDefinePropsDeclaration/invalid-d.vue.snap b/crates/biome_js_analyze/tests/specs/nursery/useVueConsistentDefinePropsDeclaration/invalid-d.vue.snap index aa17489bfe3e..bf792d9b913a 100644 --- a/crates/biome_js_analyze/tests/specs/nursery/useVueConsistentDefinePropsDeclaration/invalid-d.vue.snap +++ b/crates/biome_js_analyze/tests/specs/nursery/useVueConsistentDefinePropsDeclaration/invalid-d.vue.snap @@ -1,6 +1,5 @@ --- source: crates/biome_js_analyze/tests/spec_tests.rs -assertion_line: 152 expression: invalid-d.vue --- # Input @@ -30,5 +29,7 @@ invalid-d.vue:1:15 lint/nursery/useVueConsistentDefinePropsDeclaration ━━━ i It should be defined using type declaration like defineProps<...>(). + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-a.vue.snap b/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-a.vue.snap index 3dd7e4b44485..920f91ffd71e 100644 --- a/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-a.vue.snap +++ b/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-a.vue.snap @@ -39,6 +39,8 @@ invalid-a.vue:12:1 lint/nursery/useVueDefineMacrosOrder FIXABLE ━━━━ i and be placed before any non-macro statements, except for type declarations, imports, exports or debugger statements. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + i Unsafe fix: Reorder macro defineModel. 8 8 │ diff --git a/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-b.vue.snap b/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-b.vue.snap index 6c041bf3f529..73996162d856 100644 --- a/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-b.vue.snap +++ b/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-b.vue.snap @@ -26,6 +26,8 @@ invalid-b.vue:3:7 lint/nursery/useVueDefineMacrosOrder FIXABLE ━━━━━ i and be placed before any non-macro statements, except for type declarations, imports, exports or debugger statements. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + i Unsafe fix: Reorder macro defineEmits. 1 │ - const·count·=·ref(0) diff --git a/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-c.vue.snap b/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-c.vue.snap index 409c051bd63b..121e11e32ee3 100644 --- a/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-c.vue.snap +++ b/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-c.vue.snap @@ -26,6 +26,8 @@ invalid-c.vue:3:1 lint/nursery/useVueDefineMacrosOrder FIXABLE ━━━━━ i and be placed before any non-macro statements, except for type declarations, imports, exports or debugger statements. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + i Unsafe fix: Reorder macro defineEmits. 1 │ - ref(0) diff --git a/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-custom.vue.snap b/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-custom.vue.snap index 7cdaabb3ad0f..9b841d2e93f0 100644 --- a/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-custom.vue.snap +++ b/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-custom.vue.snap @@ -42,6 +42,8 @@ invalid-custom.vue:16:1 lint/nursery/useVueDefineMacrosOrder FIXABLE ━━━ i and be placed before any non-macro statements, except for type declarations, imports, exports or debugger statements. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + i Unsafe fix: Reorder macro definePage. 9 9 │ debugger diff --git a/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-single-a.vue.snap b/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-single-a.vue.snap index 1c88dd852f51..48eaf8b8fdad 100644 --- a/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-single-a.vue.snap +++ b/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-single-a.vue.snap @@ -22,5 +22,7 @@ invalid-single-a.vue:1:70 lint/nursery/useVueDefineMacrosOrder ━━━━━ i and be placed before any non-macro statements, except for type declarations, imports, exports or debugger statements. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-single.vue.snap b/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-single.vue.snap index 3d7b790a3a34..24ee3d87886f 100644 --- a/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-single.vue.snap +++ b/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-single.vue.snap @@ -37,5 +37,7 @@ invalid-single.vue:11:31 lint/nursery/useVueDefineMacrosOrder ━━━━━━ i and be placed before any non-macro statements, except for type declarations, imports, exports or debugger statements. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-with-defaults.vue.snap b/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-with-defaults.vue.snap index 877b006e82f5..5935f288be23 100644 --- a/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-with-defaults.vue.snap +++ b/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid-with-defaults.vue.snap @@ -37,6 +37,8 @@ invalid-with-defaults.vue:12:7 lint/nursery/useVueDefineMacrosOrder FIXABLE i and be placed before any non-macro statements, except for type declarations, imports, exports or debugger statements. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + i Unsafe fix: Reorder macro defineProps. 8 8 │ diff --git a/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid.vue.snap b/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid.vue.snap index 530c173a03ef..465e9b2303df 100644 --- a/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid.vue.snap +++ b/crates/biome_js_analyze/tests/specs/nursery/useVueDefineMacrosOrder/invalid.vue.snap @@ -40,6 +40,8 @@ invalid.vue:14:1 lint/nursery/useVueDefineMacrosOrder FIXABLE ━━━━━ i and be placed before any non-macro statements, except for type declarations, imports, exports or debugger statements. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + i Unsafe fix: Reorder macro defineProps. 8 8 │ diff --git a/crates/biome_js_analyze/tests/specs/nursery/useVueMultiWordComponentNames/invalid-has-name.vue.snap b/crates/biome_js_analyze/tests/specs/nursery/useVueMultiWordComponentNames/invalid-has-name.vue.snap index 1d2a45112592..0614cd5ba87f 100644 --- a/crates/biome_js_analyze/tests/specs/nursery/useVueMultiWordComponentNames/invalid-has-name.vue.snap +++ b/crates/biome_js_analyze/tests/specs/nursery/useVueMultiWordComponentNames/invalid-has-name.vue.snap @@ -26,5 +26,7 @@ invalid-has-name.vue:2:8 lint/nursery/useVueMultiWordComponentNames ━━━━ i Rename the component to have 2 or more words (e.g. "FooItem", or "BarView"). + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_js_analyze/tests/specs/nursery/useVueMultiWordComponentNames/invalid.js.snap b/crates/biome_js_analyze/tests/specs/nursery/useVueMultiWordComponentNames/invalid.js.snap index 0c38eb817461..bab9a07f4519 100644 --- a/crates/biome_js_analyze/tests/specs/nursery/useVueMultiWordComponentNames/invalid.js.snap +++ b/crates/biome_js_analyze/tests/specs/nursery/useVueMultiWordComponentNames/invalid.js.snap @@ -37,6 +37,8 @@ invalid.js:5:8 lint/nursery/useVueMultiWordComponentNames ━━━━━━━ i Rename the component to have 2 or more words (e.g. "FooItem", or "BarView"). + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` @@ -55,5 +57,7 @@ invalid.js:13:19 lint/nursery/useVueMultiWordComponentNames ━━━━━━ i Rename the component to have 2 or more words (e.g. "FooItem", or "BarView"). + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_js_analyze/tests/specs/nursery/useVueMultiWordComponentNames/invalid.vue.snap b/crates/biome_js_analyze/tests/specs/nursery/useVueMultiWordComponentNames/invalid.vue.snap index 835271be6f40..b011b7f343da 100644 --- a/crates/biome_js_analyze/tests/specs/nursery/useVueMultiWordComponentNames/invalid.vue.snap +++ b/crates/biome_js_analyze/tests/specs/nursery/useVueMultiWordComponentNames/invalid.vue.snap @@ -26,5 +26,7 @@ invalid.vue:2:8 lint/nursery/useVueMultiWordComponentNames ━━━━━━━ i The component name was inferred from the file name. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/bundleDependencies/package.json.snap b/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/bundleDependencies/package.json.snap index dc902229b42b..478df2ceb602 100644 --- a/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/bundleDependencies/package.json.snap +++ b/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/bundleDependencies/package.json.snap @@ -39,5 +39,7 @@ package.json:6:5 lint/nursery/noDuplicateDependencies ━━━━━━━━ i This can lead to package manager issues and confusion for other developers. To resolve this, remove one of the listings. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/dependencies-devDependencies/package.json.snap b/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/dependencies-devDependencies/package.json.snap index b2b50cd84176..9fbd3f202293 100644 --- a/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/dependencies-devDependencies/package.json.snap +++ b/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/dependencies-devDependencies/package.json.snap @@ -42,5 +42,7 @@ package.json:8:5 lint/nursery/noDuplicateDependencies ━━━━━━━━ i This can lead to package manager issues and confusion for other developers. To resolve this, remove one of the listings. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/dependencies-optionalDependencies/package.json.snap b/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/dependencies-optionalDependencies/package.json.snap index 26bef5945591..45852dda0354 100644 --- a/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/dependencies-optionalDependencies/package.json.snap +++ b/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/dependencies-optionalDependencies/package.json.snap @@ -42,5 +42,7 @@ package.json:8:5 lint/nursery/noDuplicateDependencies ━━━━━━━━ i This can lead to package manager issues and confusion for other developers. To resolve this, remove one of the listings. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/dependencies-peerDependencies/package.json.snap b/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/dependencies-peerDependencies/package.json.snap index 44e1f6f839d0..c1a9cdd86917 100644 --- a/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/dependencies-peerDependencies/package.json.snap +++ b/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/dependencies-peerDependencies/package.json.snap @@ -42,5 +42,7 @@ package.json:8:5 lint/nursery/noDuplicateDependencies ━━━━━━━━ i This can lead to package manager issues and confusion for other developers. To resolve this, remove one of the listings. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/dependencies/package.json.snap b/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/dependencies/package.json.snap index a87fca847d71..bb9e1c101baf 100644 --- a/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/dependencies/package.json.snap +++ b/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/dependencies/package.json.snap @@ -39,5 +39,7 @@ package.json:6:5 lint/nursery/noDuplicateDependencies ━━━━━━━━ i This can lead to package manager issues and confusion for other developers. To resolve this, remove one of the listings. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/optionalDependencies-peerDependencies/package.json.snap b/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/optionalDependencies-peerDependencies/package.json.snap index 272f7997d18c..dfb0db0c4a15 100644 --- a/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/optionalDependencies-peerDependencies/package.json.snap +++ b/crates/biome_json_analyze/tests/specs/nursery/noDuplicateDependencies/invalid/optionalDependencies-peerDependencies/package.json.snap @@ -42,5 +42,7 @@ package.json:4:5 lint/nursery/noDuplicateDependencies ━━━━━━━━ i This can lead to package manager issues and confusion for other developers. To resolve this, remove one of the listings. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_json_analyze/tests/specs/nursery/useRequiredScripts/invalid/missing-all-scripts/package.json.snap b/crates/biome_json_analyze/tests/specs/nursery/useRequiredScripts/invalid/missing-all-scripts/package.json.snap index 3fac73824aa0..f8feff4f91b4 100644 --- a/crates/biome_json_analyze/tests/specs/nursery/useRequiredScripts/invalid/missing-all-scripts/package.json.snap +++ b/crates/biome_json_analyze/tests/specs/nursery/useRequiredScripts/invalid/missing-all-scripts/package.json.snap @@ -31,5 +31,7 @@ package.json:3:3 lint/nursery/useRequiredScripts ━━━━━━━━━━ i Consistent scripts across packages ensure that each can be run reliably from the root of our project. Add the missing scripts to your package.json. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_json_analyze/tests/specs/nursery/useRequiredScripts/invalid/missing-multiple-scripts/package.json.snap b/crates/biome_json_analyze/tests/specs/nursery/useRequiredScripts/invalid/missing-multiple-scripts/package.json.snap index 30516f0e73cc..2bfd4ebfb091 100644 --- a/crates/biome_json_analyze/tests/specs/nursery/useRequiredScripts/invalid/missing-multiple-scripts/package.json.snap +++ b/crates/biome_json_analyze/tests/specs/nursery/useRequiredScripts/invalid/missing-multiple-scripts/package.json.snap @@ -31,5 +31,7 @@ package.json:3:3 lint/nursery/useRequiredScripts ━━━━━━━━━━ i Consistent scripts across packages ensure that each can be run reliably from the root of our project. Add the missing scripts to your package.json. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_json_analyze/tests/specs/nursery/useRequiredScripts/invalid/missing-single-script/package.json.snap b/crates/biome_json_analyze/tests/specs/nursery/useRequiredScripts/invalid/missing-single-script/package.json.snap index bc43e59bfbbb..2fe1cc9eb7be 100644 --- a/crates/biome_json_analyze/tests/specs/nursery/useRequiredScripts/invalid/missing-single-script/package.json.snap +++ b/crates/biome_json_analyze/tests/specs/nursery/useRequiredScripts/invalid/missing-single-script/package.json.snap @@ -31,5 +31,7 @@ package.json:3:3 lint/nursery/useRequiredScripts ━━━━━━━━━━ i Consistent scripts across packages ensure that each can be run reliably from the root of our project. Add the missing script to your package.json. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ``` diff --git a/crates/biome_json_analyze/tests/specs/nursery/useRequiredScripts/invalid/no-scripts-section/package.json.snap b/crates/biome_json_analyze/tests/specs/nursery/useRequiredScripts/invalid/no-scripts-section/package.json.snap index 63b4383f45bb..ec1b22d66464 100644 --- a/crates/biome_json_analyze/tests/specs/nursery/useRequiredScripts/invalid/no-scripts-section/package.json.snap +++ b/crates/biome_json_analyze/tests/specs/nursery/useRequiredScripts/invalid/no-scripts-section/package.json.snap @@ -27,5 +27,7 @@ package.json:1:1 lint/nursery/useRequiredScripts ━━━━━━━━━━ i Consistent scripts across packages ensure that each can be run reliably from the root of our project. Add the missing scripts to your package.json. + i This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information. + ```