Skip to content

Commit be8d9c9

Browse files
chore: release eslint-plugin-svelte (#866)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## [email protected] ### Minor Changes - [`7460836`](7460836) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat(html-closing-bracket-new-line): add `html-closing-bracket-new-line` rule - [#868](#868) [`edf99d3`](edf99d3) Thanks [@mikededo](https://github.com/mikededo)! - feat(no-inspect): add `no-inspect` rule ### Patch Changes - [#856](#856) [`cf6c842`](cf6c842) Thanks [@KuSh](https://github.com/KuSh)! - chore: Avoid using deprecated FlatConfig eslint type --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Yosuke Ota <[email protected]>
1 parent 7460836 commit be8d9c9

File tree

8 files changed

+24
-20
lines changed

8 files changed

+24
-20
lines changed

.changeset/html-closing-bracket-new-line.md

-5
This file was deleted.

.changeset/warm-eyes-boil.md

-5
This file was deleted.

.changeset/witty-games-mix.md

-5
This file was deleted.

docs/rules/html-closing-bracket-new-line.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ pageClass: 'rule-details'
33
sidebarDepth: 0
44
title: 'svelte/html-closing-bracket-new-line'
55
description: "Require or disallow a line break before tag's closing brackets"
6+
since: 'v2.45.0'
67
---
78

89
# svelte/html-closing-bracket-new-line
910

1011
> Require or disallow a line break 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
@@ -83,6 +83,10 @@ This rule enforces a line break (or no line break) before tag's closing brackets
8383

8484
The `selfClosing` is optional, and by default it will use the same configuration as `singleline` and `multiline`, respectively.
8585

86+
## :rocket: Version
87+
88+
This rule was introduced in eslint-plugin-svelte v2.45.0
89+
8690
## :mag: Implementation
8791

8892
- [Rule source](https://github.com/sveltejs/eslint-plugin-svelte/blob/main/packages/eslint-plugin-svelte/src/rules/html-closing-bracket-new-line.ts)

docs/rules/no-inspect.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ pageClass: 'rule-details'
33
sidebarDepth: 0
44
title: 'svelte/no-inspect'
55
description: 'Warns against the use of `$inspect` directive'
6+
since: 'v2.45.0'
67
---
78

89
# svelte/no-inspect
910

1011
> Warns against the use of `$inspect` directive
1112
12-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> **_This rule has not been released yet._** </badge>
13-
1413
## :book: Rule Details
1514

1615
This rule reports usages of `$inspect`.
@@ -33,6 +32,10 @@ This rule reports usages of `$inspect`.
3332

3433
Nothing.
3534

35+
## :rocket: Version
36+
37+
This rule was introduced in eslint-plugin-svelte v2.45.0
38+
3639
## :mag: Implementation
3740

3841
- [Rule source](https://github.com/sveltejs/eslint-plugin-svelte/blob/main/packages/eslint-plugin-svelte/src/rules/no-inspect.ts)

packages/eslint-plugin-svelte/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# eslint-plugin-svelte
22

3+
## 2.45.0
4+
5+
### Minor Changes
6+
7+
- [#870](https://github.com/sveltejs/eslint-plugin-svelte/pull/870) [`b0373be`](https://github.com/sveltejs/eslint-plugin-svelte/commit/b0373bef49e4225751c98c3c46c6099cb7d1ca72) Thanks [@mikededo](https://github.com/mikededo)! - feat(html-closing-bracket-new-line): add `html-closing-bracket-new-line` rule
8+
9+
- [#868](https://github.com/sveltejs/eslint-plugin-svelte/pull/868) [`edf99d3`](https://github.com/sveltejs/eslint-plugin-svelte/commit/edf99d3d7b7bf47def460efce4aabe59c2ce446d) Thanks [@mikededo](https://github.com/mikededo)! - feat(no-inspect): add `no-inspect` rule
10+
11+
### Patch Changes
12+
13+
- [#856](https://github.com/sveltejs/eslint-plugin-svelte/pull/856) [`cf6c842`](https://github.com/sveltejs/eslint-plugin-svelte/commit/cf6c842abc8730ef3841686a52273eec3906abcf) Thanks [@KuSh](https://github.com/KuSh)! - chore: Avoid using deprecated FlatConfig eslint type
14+
315
## 2.44.1
416

517
### Patch Changes

packages/eslint-plugin-svelte/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-svelte",
3-
"version": "2.44.1",
3+
"version": "2.45.0",
44
"description": "ESLint plugin for Svelte using AST",
55
"repository": "git+https://github.com/sveltejs/eslint-plugin-svelte.git",
66
"homepage": "https://sveltejs.github.io/eslint-plugin-svelte",

packages/eslint-plugin-svelte/src/meta.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
// This file has been automatically generated,
33
// in order to update its content execute "pnpm run update"
44
export const name = 'eslint-plugin-svelte';
5-
export const version = '2.44.1';
5+
export const version = '2.45.0';

0 commit comments

Comments
 (0)