Skip to content

Commit c412ea4

Browse files
committed
2.3.0
1 parent a31376c commit c412ea4

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

docs/rules/html-closing-bracket-spacing.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ pageClass: "rule-details"
33
sidebarDepth: 0
44
title: "svelte/html-closing-bracket-spacing"
55
description: "require or disallow a space before tag's closing brackets"
6+
since: "v2.3.0"
67
---
78

89
# svelte/html-closing-bracket-spacing
910

1011
> require or disallow a space before tag's closing brackets
1112
12-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> **_This rule has not been released yet._** </badge>
1313
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
1414

1515
## :book: Rule Details
@@ -71,6 +71,10 @@ Every option can be set to
7171
- "never" (`<div/>`)
7272
- "ignore" (either `<div />` or `<div/>`)
7373

74+
## :rocket: Version
75+
76+
This rule was introduced in eslint-plugin-svelte v2.3.0
77+
7478
## :mag: Implementation
7579

7680
- [Rule source](https://github.com/ota-meshi/eslint-plugin-svelte/blob/main/src/rules/html-closing-bracket-spacing.ts)

docs/rules/no-spaces-around-equal-signs-in-attribute.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ pageClass: "rule-details"
33
sidebarDepth: 0
44
title: "svelte/no-spaces-around-equal-signs-in-attribute"
55
description: "disallow spaces around equal signs in attribute"
6+
since: "v2.3.0"
67
---
78

89
# svelte/no-spaces-around-equal-signs-in-attribute
910

1011
> disallow spaces around equal signs in attribute
1112
12-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> **_This rule has not been released yet._** </badge>
1313
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
1414

1515
## :book: Rule Details
@@ -47,6 +47,10 @@ This rule disallows spaces around equal signs in attributes
4747

4848
Nothing.
4949

50+
## :rocket: Version
51+
52+
This rule was introduced in eslint-plugin-svelte v2.3.0
53+
5054
## :mag: Implementation
5155

5256
- [Rule source](https://github.com/ota-meshi/eslint-plugin-svelte/blob/main/src/rules/no-spaces-around-equal-signs-in-attribute.ts)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-svelte",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "ESLint plugin for Svelte using AST",
55
"repository": "git+https://github.com/ota-meshi/eslint-plugin-svelte.git",
66
"homepage": "https://ota-meshi.github.io/eslint-plugin-svelte",

0 commit comments

Comments
 (0)