From 300f2e9c19c1baade2ab9175e7b7986b3afe7914 Mon Sep 17 00:00:00 2001 From: Flo Edelmann Date: Fri, 1 Aug 2025 11:12:05 +0200 Subject: [PATCH 1/2] docs: add related rules --- docs/rules/multiline-html-element-content-newline.md | 7 +++---- docs/rules/singleline-html-element-content-newline.md | 4 ++++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/rules/multiline-html-element-content-newline.md b/docs/rules/multiline-html-element-content-newline.md index bf654aafe..4e6e999b1 100644 --- a/docs/rules/multiline-html-element-content-newline.md +++ b/docs/rules/multiline-html-element-content-newline.md @@ -143,11 +143,10 @@ This rule enforces a line break before and after the contents of a multiline ele -## :books: Further Reading +## :couple: Related Rules -- [no-multiple-empty-lines] - -[no-multiple-empty-lines]: https://eslint.org/docs/rules/no-multiple-empty-lines +- [vue/singleline-html-element-content-newline](./singleline-html-element-content-newline.md) +- [no-multiple-empty-lines](https://eslint.org/docs/rules/no-multiple-empty-lines) ## :rocket: Version diff --git a/docs/rules/singleline-html-element-content-newline.md b/docs/rules/singleline-html-element-content-newline.md index 7219a782d..7b2cafc88 100644 --- a/docs/rules/singleline-html-element-content-newline.md +++ b/docs/rules/singleline-html-element-content-newline.md @@ -110,6 +110,10 @@ This rule enforces a line break before and after the contents of a singleline el +## :couple: Related Rules + +- [vue/multiline-html-element-content-newline](./multiline-html-element-content-newline.md) + ## :rocket: Version This rule was introduced in eslint-plugin-vue v5.0.0 From 2d681d0e9e64fa5ea6d393f37864f4db888f3c34 Mon Sep 17 00:00:00 2001 From: Flo Edelmann Date: Fri, 1 Aug 2025 11:17:52 +0200 Subject: [PATCH 2/2] docs: update ESLint Stylistic links --- docs/rules/array-bracket-newline.md | 4 ++-- docs/rules/array-bracket-spacing.md | 4 ++-- docs/rules/array-element-newline.md | 8 ++++---- docs/rules/arrow-spacing.md | 4 ++-- docs/rules/block-spacing.md | 4 ++-- docs/rules/brace-style.md | 4 ++-- docs/rules/comma-dangle.md | 4 ++-- docs/rules/comma-spacing.md | 4 ++-- docs/rules/comma-style.md | 4 ++-- docs/rules/dot-location.md | 4 ++-- docs/rules/func-call-spacing.md | 4 ++-- docs/rules/key-spacing.md | 4 ++-- docs/rules/keyword-spacing.md | 4 ++-- docs/rules/multiline-ternary.md | 4 ++-- docs/rules/no-extra-parens.md | 4 ++-- docs/rules/object-curly-newline.md | 4 ++-- docs/rules/object-curly-spacing.md | 4 ++-- docs/rules/object-property-newline.md | 4 ++-- docs/rules/operator-linebreak.md | 4 ++-- docs/rules/quote-props.md | 4 ++-- docs/rules/space-in-parens.md | 4 ++-- docs/rules/space-infix-ops.md | 4 ++-- docs/rules/space-unary-ops.md | 4 ++-- docs/rules/template-curly-spacing.md | 4 ++-- 24 files changed, 50 insertions(+), 50 deletions(-) diff --git a/docs/rules/array-bracket-newline.md b/docs/rules/array-bracket-newline.md index 550723b5d..1e51479f5 100644 --- a/docs/rules/array-bracket-newline.md +++ b/docs/rules/array-bracket-newline.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/array-bracket-newline] - [array-bracket-newline] -[@stylistic/array-bracket-newline]: https://eslint.style/rules/default/array-bracket-newline +[@stylistic/array-bracket-newline]: https://eslint.style/rules/array-bracket-newline [array-bracket-newline]: https://eslint.org/docs/rules/array-bracket-newline ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v7.1.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/array-bracket-newline.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/array-bracket-newline.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/js/array-bracket-newline) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/array-bracket-newline) diff --git a/docs/rules/array-bracket-spacing.md b/docs/rules/array-bracket-spacing.md index d2f820189..fd88a6a36 100644 --- a/docs/rules/array-bracket-spacing.md +++ b/docs/rules/array-bracket-spacing.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/array-bracket-spacing] - [array-bracket-spacing] -[@stylistic/array-bracket-spacing]: https://eslint.style/rules/default/array-bracket-spacing +[@stylistic/array-bracket-spacing]: https://eslint.style/rules/array-bracket-spacing [array-bracket-spacing]: https://eslint.org/docs/rules/array-bracket-spacing ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v5.2.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/array-bracket-spacing.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/array-bracket-spacing.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/js/array-bracket-spacing) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/array-bracket-spacing) diff --git a/docs/rules/array-element-newline.md b/docs/rules/array-element-newline.md index bd83bdda4..f7d658143 100644 --- a/docs/rules/array-element-newline.md +++ b/docs/rules/array-element-newline.md @@ -28,9 +28,9 @@ However, if neither is found, the rule cannot be used. - [array-bracket-newline] - [array-element-newline] -[@stylistic/array-element-newline]: https://eslint.style/rules/default/array-element-newline -[@stylistic/array-bracket-spacing]: https://eslint.style/rules/default/array-bracket-spacing -[@stylistic/array-bracket-newline]: https://eslint.style/rules/default/array-bracket-newline +[@stylistic/array-element-newline]: https://eslint.style/rules/array-element-newline +[@stylistic/array-bracket-spacing]: https://eslint.style/rules/array-bracket-spacing +[@stylistic/array-bracket-newline]: https://eslint.style/rules/array-bracket-newline [array-bracket-spacing]: https://eslint.org/docs/rules/array-bracket-spacing [array-bracket-newline]: https://eslint.org/docs/rules/array-bracket-newline [array-element-newline]: https://eslint.org/docs/rules/array-element-newline @@ -44,4 +44,4 @@ This rule was introduced in eslint-plugin-vue v9.9.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/array-element-newline.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/array-element-newline.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/js/array-element-newline) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/array-element-newline) diff --git a/docs/rules/arrow-spacing.md b/docs/rules/arrow-spacing.md index 7020a208e..adffbf1c9 100644 --- a/docs/rules/arrow-spacing.md +++ b/docs/rules/arrow-spacing.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/arrow-spacing] - [arrow-spacing] -[@stylistic/arrow-spacing]: https://eslint.style/rules/default/arrow-spacing +[@stylistic/arrow-spacing]: https://eslint.style/rules/arrow-spacing [arrow-spacing]: https://eslint.org/docs/rules/arrow-spacing ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v5.2.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/arrow-spacing.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/arrow-spacing.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/js/arrow-spacing) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/arrow-spacing) diff --git a/docs/rules/block-spacing.md b/docs/rules/block-spacing.md index e9f16b8d0..187237ed8 100644 --- a/docs/rules/block-spacing.md +++ b/docs/rules/block-spacing.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/block-spacing] - [block-spacing] -[@stylistic/block-spacing]: https://eslint.style/rules/default/block-spacing +[@stylistic/block-spacing]: https://eslint.style/rules/block-spacing [block-spacing]: https://eslint.org/docs/rules/block-spacing ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v5.2.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/block-spacing.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/block-spacing.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/ts/block-spacing) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/block-spacing) diff --git a/docs/rules/brace-style.md b/docs/rules/brace-style.md index 1727f42fb..2667e1829 100644 --- a/docs/rules/brace-style.md +++ b/docs/rules/brace-style.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/brace-style] - [brace-style] -[@stylistic/brace-style]: https://eslint.style/rules/default/brace-style +[@stylistic/brace-style]: https://eslint.style/rules/brace-style [brace-style]: https://eslint.org/docs/rules/brace-style ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v5.2.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/brace-style.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/brace-style.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/ts/brace-style) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/brace-style) diff --git a/docs/rules/comma-dangle.md b/docs/rules/comma-dangle.md index aceaa6dc1..7fd33c445 100644 --- a/docs/rules/comma-dangle.md +++ b/docs/rules/comma-dangle.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/comma-dangle] - [comma-dangle] -[@stylistic/comma-dangle]: https://eslint.style/rules/default/comma-dangle +[@stylistic/comma-dangle]: https://eslint.style/rules/comma-dangle [comma-dangle]: https://eslint.org/docs/rules/comma-dangle ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v5.2.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/comma-dangle.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/comma-dangle.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/ts/comma-dangle) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/comma-dangle) diff --git a/docs/rules/comma-spacing.md b/docs/rules/comma-spacing.md index b585fadf7..8f31fa50a 100644 --- a/docs/rules/comma-spacing.md +++ b/docs/rules/comma-spacing.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/comma-spacing] - [comma-spacing] -[@stylistic/comma-spacing]: https://eslint.style/rules/default/comma-spacing +[@stylistic/comma-spacing]: https://eslint.style/rules/comma-spacing [comma-spacing]: https://eslint.org/docs/rules/comma-spacing ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v7.0.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/comma-spacing.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/comma-spacing.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/ts/comma-spacing) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/comma-spacing) diff --git a/docs/rules/comma-style.md b/docs/rules/comma-style.md index 9e08fdaaf..c4c6eea96 100644 --- a/docs/rules/comma-style.md +++ b/docs/rules/comma-style.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/comma-style] - [comma-style] -[@stylistic/comma-style]: https://eslint.style/rules/default/comma-style +[@stylistic/comma-style]: https://eslint.style/rules/comma-style [comma-style]: https://eslint.org/docs/rules/comma-style ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v7.0.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/comma-style.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/comma-style.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/js/comma-style) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/comma-style) diff --git a/docs/rules/dot-location.md b/docs/rules/dot-location.md index edb785080..101b58776 100644 --- a/docs/rules/dot-location.md +++ b/docs/rules/dot-location.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/dot-location] - [dot-location] -[@stylistic/dot-location]: https://eslint.style/rules/default/dot-location +[@stylistic/dot-location]: https://eslint.style/rules/dot-location [dot-location]: https://eslint.org/docs/rules/dot-location ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v6.0.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/dot-location.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/dot-location.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/js/dot-location) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/dot-location) diff --git a/docs/rules/func-call-spacing.md b/docs/rules/func-call-spacing.md index f330255d1..89365a8c9 100644 --- a/docs/rules/func-call-spacing.md +++ b/docs/rules/func-call-spacing.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/function-call-spacing] - [func-call-spacing] -[@stylistic/function-call-spacing]: https://eslint.style/rules/default/function-call-spacing +[@stylistic/function-call-spacing]: https://eslint.style/rules/function-call-spacing [func-call-spacing]: https://eslint.org/docs/rules/func-call-spacing ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v7.0.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/func-call-spacing.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/func-call-spacing.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/ts/function-call-spacing) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/function-call-spacing) diff --git a/docs/rules/key-spacing.md b/docs/rules/key-spacing.md index 28c8f1856..640490a48 100644 --- a/docs/rules/key-spacing.md +++ b/docs/rules/key-spacing.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/key-spacing] - [key-spacing] -[@stylistic/key-spacing]: https://eslint.style/rules/default/key-spacing +[@stylistic/key-spacing]: https://eslint.style/rules/key-spacing [key-spacing]: https://eslint.org/docs/rules/key-spacing ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v5.2.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/key-spacing.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/key-spacing.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/ts/key-spacing) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/key-spacing) diff --git a/docs/rules/keyword-spacing.md b/docs/rules/keyword-spacing.md index afda9d1d7..74938470c 100644 --- a/docs/rules/keyword-spacing.md +++ b/docs/rules/keyword-spacing.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/keyword-spacing] - [keyword-spacing] -[@stylistic/keyword-spacing]: https://eslint.style/rules/default/keyword-spacing +[@stylistic/keyword-spacing]: https://eslint.style/rules/keyword-spacing [keyword-spacing]: https://eslint.org/docs/rules/keyword-spacing ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v6.0.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/keyword-spacing.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/keyword-spacing.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/ts/keyword-spacing) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/keyword-spacing) diff --git a/docs/rules/multiline-ternary.md b/docs/rules/multiline-ternary.md index 1fe4d84fb..687138e77 100644 --- a/docs/rules/multiline-ternary.md +++ b/docs/rules/multiline-ternary.md @@ -56,7 +56,7 @@ div { - [@stylistic/multiline-ternary] - [multiline-ternary] -[@stylistic/multiline-ternary]: https://eslint.style/rules/default/multiline-ternary +[@stylistic/multiline-ternary]: https://eslint.style/rules/multiline-ternary [multiline-ternary]: https://eslint.org/docs/rules/multiline-ternary ## :rocket: Version @@ -68,4 +68,4 @@ This rule was introduced in eslint-plugin-vue v9.7.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/multiline-ternary.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/multiline-ternary.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/js/multiline-ternary) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/multiline-ternary) diff --git a/docs/rules/no-extra-parens.md b/docs/rules/no-extra-parens.md index 442a965ba..fbb0a3202 100644 --- a/docs/rules/no-extra-parens.md +++ b/docs/rules/no-extra-parens.md @@ -46,7 +46,7 @@ This rule extends the [@stylistic/no-extra-parens] rule and applies it to the `< - [@stylistic/no-extra-parens] - [no-extra-parens] -[@stylistic/no-extra-parens]: https://eslint.style/rules/default/no-extra-parens +[@stylistic/no-extra-parens]: https://eslint.style/rules/no-extra-parens [no-extra-parens]: https://eslint.org/docs/rules/no-extra-parens ## :rocket: Version @@ -58,4 +58,4 @@ This rule was introduced in eslint-plugin-vue v7.0.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-extra-parens.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/no-extra-parens.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/ts/no-extra-parens) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/no-extra-parens) diff --git a/docs/rules/object-curly-newline.md b/docs/rules/object-curly-newline.md index 8f636a1da..1b9d99cfe 100644 --- a/docs/rules/object-curly-newline.md +++ b/docs/rules/object-curly-newline.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/object-curly-newline] - [object-curly-newline] -[@stylistic/object-curly-newline]: https://eslint.style/rules/default/object-curly-newline +[@stylistic/object-curly-newline]: https://eslint.style/rules/object-curly-newline [object-curly-newline]: https://eslint.org/docs/rules/object-curly-newline ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v7.0.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/object-curly-newline.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/object-curly-newline.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/ts/object-curly-newline) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/object-curly-newline) diff --git a/docs/rules/object-curly-spacing.md b/docs/rules/object-curly-spacing.md index e7a3fa0a6..c3c744987 100644 --- a/docs/rules/object-curly-spacing.md +++ b/docs/rules/object-curly-spacing.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/object-curly-spacing] - [object-curly-spacing] -[@stylistic/object-curly-spacing]: https://eslint.style/rules/default/object-curly-spacing +[@stylistic/object-curly-spacing]: https://eslint.style/rules/object-curly-spacing [object-curly-spacing]: https://eslint.org/docs/rules/object-curly-spacing ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v5.2.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/object-curly-spacing.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/object-curly-spacing.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/ts/object-curly-spacing) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/object-curly-spacing) diff --git a/docs/rules/object-property-newline.md b/docs/rules/object-property-newline.md index 6b6434ced..8a9cbf6ea 100644 --- a/docs/rules/object-property-newline.md +++ b/docs/rules/object-property-newline.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/object-property-newline] - [object-property-newline] -[@stylistic/object-property-newline]: https://eslint.style/rules/default/object-property-newline +[@stylistic/object-property-newline]: https://eslint.style/rules/object-property-newline [object-property-newline]: https://eslint.org/docs/rules/object-property-newline ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v7.0.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/object-property-newline.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/object-property-newline.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/ts/object-property-newline) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/object-property-newline) diff --git a/docs/rules/operator-linebreak.md b/docs/rules/operator-linebreak.md index b994e7622..7d27b1438 100644 --- a/docs/rules/operator-linebreak.md +++ b/docs/rules/operator-linebreak.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/operator-linebreak] - [operator-linebreak] -[@stylistic/operator-linebreak]: https://eslint.style/rules/default/operator-linebreak +[@stylistic/operator-linebreak]: https://eslint.style/rules/operator-linebreak [operator-linebreak]: https://eslint.org/docs/rules/operator-linebreak ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v7.0.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/operator-linebreak.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/operator-linebreak.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/js/operator-linebreak) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/operator-linebreak) diff --git a/docs/rules/quote-props.md b/docs/rules/quote-props.md index f5fe59248..9e2a91e79 100644 --- a/docs/rules/quote-props.md +++ b/docs/rules/quote-props.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/quote-props] - [quote-props] -[@stylistic/quote-props]: https://eslint.style/rules/default/quote-props +[@stylistic/quote-props]: https://eslint.style/rules/quote-props [quote-props]: https://eslint.org/docs/rules/quote-props ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v8.4.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/quote-props.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/quote-props.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/ts/quote-props) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/quote-props) diff --git a/docs/rules/space-in-parens.md b/docs/rules/space-in-parens.md index 3d2d5dbd7..eef3e01b5 100644 --- a/docs/rules/space-in-parens.md +++ b/docs/rules/space-in-parens.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/space-in-parens] - [space-in-parens] -[@stylistic/space-in-parens]: https://eslint.style/rules/default/space-in-parens +[@stylistic/space-in-parens]: https://eslint.style/rules/space-in-parens [space-in-parens]: https://eslint.org/docs/rules/space-in-parens ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v7.0.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/space-in-parens.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/space-in-parens.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/js/space-in-parens) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/space-in-parens) diff --git a/docs/rules/space-infix-ops.md b/docs/rules/space-infix-ops.md index 2b4e9d0a3..775726fd8 100644 --- a/docs/rules/space-infix-ops.md +++ b/docs/rules/space-infix-ops.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/space-infix-ops] - [space-infix-ops] -[@stylistic/space-infix-ops]: https://eslint.style/rules/default/space-infix-ops +[@stylistic/space-infix-ops]: https://eslint.style/rules/space-infix-ops [space-infix-ops]: https://eslint.org/docs/rules/space-infix-ops ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v5.2.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/space-infix-ops.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/space-infix-ops.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/ts/space-infix-ops) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/space-infix-ops) diff --git a/docs/rules/space-unary-ops.md b/docs/rules/space-unary-ops.md index 54fe5e192..6ecd74e8e 100644 --- a/docs/rules/space-unary-ops.md +++ b/docs/rules/space-unary-ops.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/space-unary-ops] - [space-unary-ops] -[@stylistic/space-unary-ops]: https://eslint.style/rules/default/space-unary-ops +[@stylistic/space-unary-ops]: https://eslint.style/rules/space-unary-ops [space-unary-ops]: https://eslint.org/docs/rules/space-unary-ops ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v5.2.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/space-unary-ops.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/space-unary-ops.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/js/space-unary-ops) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/space-unary-ops) diff --git a/docs/rules/template-curly-spacing.md b/docs/rules/template-curly-spacing.md index dfca50a64..26a1d3068 100644 --- a/docs/rules/template-curly-spacing.md +++ b/docs/rules/template-curly-spacing.md @@ -24,7 +24,7 @@ However, if neither is found, the rule cannot be used. - [@stylistic/template-curly-spacing] - [template-curly-spacing] -[@stylistic/template-curly-spacing]: https://eslint.style/rules/default/template-curly-spacing +[@stylistic/template-curly-spacing]: https://eslint.style/rules/template-curly-spacing [template-curly-spacing]: https://eslint.org/docs/rules/template-curly-spacing ## :rocket: Version @@ -36,4 +36,4 @@ This rule was introduced in eslint-plugin-vue v7.0.0 - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/template-curly-spacing.js) - [Test source](https://github.com/vuejs/eslint-plugin-vue/blob/master/tests/lib/rules/template-curly-spacing.js) -Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/js/template-curly-spacing) +Taken with ❤️ [from ESLint Stylistic](https://eslint.style/rules/template-curly-spacing) pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy