Skip to content

Commit db13a5f

Browse files
chore: release eslint-plugin-svelte (next) (#697)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 4e6c681 commit db13a5f

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

.changeset/pre.json

+2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
"cuddly-cats-beam",
1212
"fifty-deers-pretend",
1313
"hip-eels-unite",
14+
"lovely-papayas-cough",
1415
"popular-hotels-invent",
16+
"shaggy-dryers-smoke",
1517
"shaggy-mirrors-join",
1618
"shy-walls-laugh",
1719
"stale-crews-brush",

CHANGELOG.md

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

3+
## 2.36.0-next.9
4+
5+
### Minor Changes
6+
7+
- [#679](https://github.com/sveltejs/eslint-plugin-svelte/pull/679) [`4e6c681`](https://github.com/sveltejs/eslint-plugin-svelte/commit/4e6c6817681b81bd546b032d7b1ff9a6a6e1935a) Thanks [@marekdedic](https://github.com/marekdedic)! - feat: added the no-goto-without-base rule
8+
9+
### Patch Changes
10+
11+
- [#696](https://github.com/sveltejs/eslint-plugin-svelte/pull/696) [`d4303f5`](https://github.com/sveltejs/eslint-plugin-svelte/commit/d4303f5347dae7828e08e699741a276ee35dbd43) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: update svelte-eslint-parser
12+
313
## 2.36.0-next.8
414

515
### Patch Changes

docs/rules/no-goto-without-base.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-goto-without-base'
55
description: 'disallow using goto() without the base path'
6+
since: 'v2.36.0-next.9'
67
---
78

89
# svelte/no-goto-without-base
910

1011
> disallow using goto() without the base path
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 navigation using SvelteKit's `goto()` function without prefixing a relative URL with the base path. If a non-prefixed relative URL is used for navigation, the `goto` function navigates away from the base path, which is usually not what you wanted to do (for external URLs, `window.location = url` should be used instead).
@@ -55,6 +54,10 @@ Nothing.
5554
- [`goto()` documentation](https://kit.svelte.dev/docs/modules#$app-navigation-goto)
5655
- [`base` documentation](https://kit.svelte.dev/docs/modules#$app-paths-base)
5756

57+
## :rocket: Version
58+
59+
This rule was introduced in eslint-plugin-svelte v2.36.0-next.9
60+
5861
## :mag: Implementation
5962

6063
- [Rule source](https://github.com/sveltejs/eslint-plugin-svelte/blob/main/src/rules/no-goto-without-base.ts)

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.36.0-next.8",
3+
"version": "2.36.0-next.9",
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",

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' as const;
5-
export const version = '2.36.0-next.8' as const;
5+
export const version = '2.36.0-next.9' as const;

0 commit comments

Comments
 (0)