Skip to content

Commit 0bbad48

Browse files
committed
Merge remote-tracking branch 'origin/main' into breaking/update-config
2 parents ed82143 + b384d57 commit 0bbad48

File tree

145 files changed

+1763
-209
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+1763
-209
lines changed

.changeset/blue-panthers-run.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'eslint-plugin-svelte': patch
3+
---
4+
5+
fix: support each blocks without an item
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'eslint-plugin-svelte': minor
3+
---
4+
5+
feat: added the no-navigation-without-base rule

.changeset/fifty-parents-itch.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'eslint-plugin-svelte': minor
3+
---
4+
5+
feat: Added suggestion to the `block-lang` rule.

.changeset/green-squids-compete.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'eslint-plugin-svelte': minor
3+
---
4+
5+
Add `prefer-const` rule

.changeset/olive-melons-explain.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'eslint-plugin-svelte': major
3+
---
4+
5+
breaking: deprecated the no-goto-without-base rule

.changeset/pre.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,18 @@
66
"docs": "0.0.0"
77
},
88
"changesets": [
9+
"blue-panthers-run",
10+
"cold-starfishes-doubt",
911
"cool-rockets-allow",
1012
"fast-coins-fly",
13+
"fifty-parents-itch",
14+
"green-squids-compete",
15+
"hungry-grapes-shave",
1116
"lazy-eyes-wait",
17+
"olive-melons-explain",
1218
"olive-wolves-travel",
1319
"quiet-toys-burn",
20+
"sixty-news-look",
1421
"small-days-agree",
1522
"small-donuts-end",
1623
"thick-items-retire",

.changeset/sixty-news-look.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'eslint-plugin-svelte': minor
3+
---
4+
5+
feat: support Svelte5 of `valid-prop-names-in-kit-pages` rule

.github/workflows/pkg.pr.new.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Publish to pkg.pr.new
2+
on: [push, pull_request]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: pnpm/action-setup@v2
11+
- uses: actions/setup-node@v4
12+
- name: Install Packages
13+
run: pnpm install
14+
- name: Build
15+
run: pnpm run build
16+
- run: pnpx pkg-pr-new publish --compact './packages/eslint-plugin-svelte'

.vscode/extensions.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["rvest.vs-code-prettier-eslint"]
3+
}

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@
88
"source.fixAll.stylelint": "explicit"
99
},
1010
"svelte.plugin.typescript.diagnostics.enable": false,
11-
"typescript.tsdk": "node_modules/typescript/lib"
11+
"typescript.tsdk": "node_modules/typescript/lib",
12+
"[typescript]": {
13+
"editor.defaultFormatter": "esbenp.prettier-vscode"
14+
}
1215
}

0 commit comments

Comments
 (0)