Skip to content

Commit cd1bad3

Browse files
chore: release eslint-plugin-svelte (next)
1 parent faf90ef commit cd1bad3

File tree

5 files changed

+34
-4
lines changed

5 files changed

+34
-4
lines changed

.changeset/pre.json

+7
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,13 @@
1111
"cold-starfishes-doubt",
1212
"cool-rockets-allow",
1313
"cool-steaks-happen",
14+
"cool-tomatoes-fry",
15+
"early-trainers-know",
1416
"eighty-trainers-push",
1517
"fast-coins-fly",
1618
"fifty-parents-itch",
1719
"green-squids-compete",
20+
"grumpy-deers-film",
1821
"hip-avocados-call",
1922
"hungry-grapes-shave",
2023
"itchy-dragons-boil",
@@ -23,11 +26,15 @@
2326
"nice-clocks-buy",
2427
"olive-melons-explain",
2528
"olive-spiders-type",
29+
"olive-squids-design",
2630
"olive-wolves-travel",
31+
"perfect-mirrors-doubt",
2732
"quiet-toys-burn",
2833
"sixty-news-look",
2934
"small-days-agree",
3035
"small-donuts-end",
36+
"smart-apes-confess",
37+
"smart-brooms-relax",
3138
"soft-bears-hear",
3239
"thick-items-retire",
3340
"thin-dryers-know",

docs/rules/consistent-selector-style.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ pageClass: 'rule-details'
33
sidebarDepth: 0
44
title: 'svelte/consistent-selector-style'
55
description: 'enforce a consistent style for CSS selectors'
6+
since: 'v3.0.0-next.15'
67
---
78

89
# svelte/consistent-selector-style
910

1011
> enforce a consistent style for CSS selectors
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 allows you to set a preferred style for your CSS (& other style language) selectors. In CSS, there is a wide list of options for selecting elements, however, the three most basic types are:
@@ -92,6 +91,10 @@ This rule allows you to set a preferred style for your CSS (& other style langua
9291

9392
- [CSS selector documentation](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_selectors)
9493

94+
## :rocket: Version
95+
96+
This rule was introduced in eslint-plugin-svelte v3.0.0-next.15
97+
9598
## :mag: Implementation
9699

97100
- [Rule source](https://github.com/sveltejs/eslint-plugin-svelte/blob/main/packages/eslint-plugin-svelte/src/rules/consistent-selector-style.ts)

packages/eslint-plugin-svelte/CHANGELOG.md

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

3+
## 3.0.0-next.15
4+
5+
### Minor Changes
6+
7+
- [#925](https://github.com/sveltejs/eslint-plugin-svelte/pull/925) [`faf90ef`](https://github.com/sveltejs/eslint-plugin-svelte/commit/faf90ef9a6aab3ec647c30df67a54a25d8322324) Thanks [@marekdedic](https://github.com/marekdedic)! - feat: added the `consistent-selector-style` rule
8+
9+
### Patch Changes
10+
11+
- [#1016](https://github.com/sveltejs/eslint-plugin-svelte/pull/1016) [`91999e3`](https://github.com/sveltejs/eslint-plugin-svelte/commit/91999e3520afe42b3cc51f0823f7c912b97176b4) Thanks [@baseballyama](https://github.com/baseballyama)! - chore: change the rule category of `valid-prop-names-in-kit-pages` to `SvelteKit`
12+
13+
- [#1012](https://github.com/sveltejs/eslint-plugin-svelte/pull/1012) [`763cf7a`](https://github.com/sveltejs/eslint-plugin-svelte/commit/763cf7ace209dfb90cf7d1d7e6699a6c0fe240d6) Thanks [@baseballyama](https://github.com/baseballyama)! - chore: change the rule category of `no-export-load-in-svelte-module-in-kit-pages` to `SvelteKit`
14+
15+
- [#1017](https://github.com/sveltejs/eslint-plugin-svelte/pull/1017) [`806d72a`](https://github.com/sveltejs/eslint-plugin-svelte/commit/806d72ad55908fb967252ea0514672b026a6bd09) Thanks [@baseballyama](https://github.com/baseballyama)! - chore: do not run `no-reactive-functions` rule on Svelte 5 with runes
16+
17+
- [#1014](https://github.com/sveltejs/eslint-plugin-svelte/pull/1014) [`74373ec`](https://github.com/sveltejs/eslint-plugin-svelte/commit/74373ec77aa9063c64657faefc01ca331e27b599) Thanks [@baseballyama](https://github.com/baseballyama)! - chore: do not run `no-reactive-reassign` rule on Svelte 5 with runes
18+
19+
- [#1018](https://github.com/sveltejs/eslint-plugin-svelte/pull/1018) [`5bdc906`](https://github.com/sveltejs/eslint-plugin-svelte/commit/5bdc906fc1e32835ab3b75dfd2a6a08b4cbb968b) Thanks [@baseballyama](https://github.com/baseballyama)! - chore: run the `no-inspect` rule only in Svelte 5’s runes mode
20+
21+
- [#1006](https://github.com/sveltejs/eslint-plugin-svelte/pull/1006) [`5fd91ba`](https://github.com/sveltejs/eslint-plugin-svelte/commit/5fd91baa1835cbffc58a8c473ccf70f3f02a34e6) Thanks [@baseballyama](https://github.com/baseballyama)! - chore: do not run `infinite-reactive-loop` rule on Svelte 5 with runes
22+
323
## 3.0.0-next.14
424

525
### 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": "3.0.0-next.14",
3+
"version": "3.0.0-next.15",
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 = '3.0.0-next.14';
5+
export const version = '3.0.0-next.15';

0 commit comments

Comments
 (0)