Skip to content

Commit 17a460b

Browse files
chore: release eslint-plugin-svelte (#610)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent ef5f965 commit 17a460b

File tree

6 files changed

+15
-14
lines changed

6 files changed

+15
-14
lines changed

.changeset/happy-monkeys-grin.md

-5
This file was deleted.

.changeset/slimy-jokes-reflect.md

-5
This file was deleted.

CHANGELOG.md

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

3+
## 2.35.0
4+
5+
### Minor Changes
6+
7+
- [#608](https://github.com/sveltejs/eslint-plugin-svelte/pull/608) [`ff28fd3`](https://github.com/sveltejs/eslint-plugin-svelte/commit/ff28fd328254a0b7327078a878c9486f4db1b7c8) Thanks [@marekdedic](https://github.com/marekdedic)! - feat: added the no-inline-styles rule
8+
9+
- [#605](https://github.com/sveltejs/eslint-plugin-svelte/pull/605) [`ef5f965`](https://github.com/sveltejs/eslint-plugin-svelte/commit/ef5f965024935c9bf6224450243223066789501e) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: use eslint-compat-utils
10+
311
## 2.34.1
412

513
### Patch Changes

docs/rules/no-inline-styles.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-inline-styles'
55
description: 'disallow attributes and directives that produce inline styles'
6+
since: 'v2.35.0'
67
---
78

89
# svelte/no-inline-styles
910

1011
> disallow attributes and directives that produce inline styles
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 all attributes and directives that would compile to inline styles. This is mainly useful when adding Content Security Policy to your app, as having inline styles requires the `style-src: 'unsafe-inline'` directive, which is generally discouraged and unsafe.
@@ -63,6 +62,10 @@ This rule reports all attributes and directives that would compile to inline sty
6362

6463
- [CSP documentation](https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP)
6564

65+
## :rocket: Version
66+
67+
This rule was introduced in eslint-plugin-svelte v2.35.0
68+
6669
## :mag: Implementation
6770

6871
- [Rule source](https://github.com/sveltejs/eslint-plugin-svelte/blob/main/src/rules/no-inline-styles.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.34.1",
3+
"version": "2.35.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",

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.34.1' as const;
5+
export const version = '2.35.0' as const;

0 commit comments

Comments
 (0)