diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29..15f0ead 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ + +## v0.0.2 (2021-08-19) + +#### :star: Features +* [#2](https://github.com/intlify/eslint-plugin-svelte/pull/2) Add support for eslint v8 ([@ota-meshi](https://github.com/ota-meshi)) + +#### Committers: 1 +- Yosuke Ota ([@ota-meshi](https://github.com/ota-meshi)) + diff --git a/docs/rules/no-raw-text.md b/docs/rules/no-raw-text.md index 69dd96a..34772e6 100644 --- a/docs/rules/no-raw-text.md +++ b/docs/rules/no-raw-text.md @@ -1,6 +1,7 @@ --- title: '@intlify/svelte/no-raw-text' description: disallow to string literal in template +since: v0.0.1 --- # @intlify/svelte/no-raw-text @@ -66,6 +67,10 @@ This rule encourage i18n in about the application needs to be localized. - `ignorePattern`: specify a regexp pattern that matches strings to ignore - `ignoreText`: specify an array of strings to ignore +## :rocket: Version + +This rule was introduced in `@intlify/eslint-plugin-svelte` v0.0.1 + ## :mag: Implementation - [Rule source](https://github.com/intlify/eslint-plugin-svelte/blob/main/lib/rules/no-raw-text.ts) diff --git a/package.json b/package.json index fb8df6b..9e85673 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@intlify/eslint-plugin-svelte", "description": "ESLint plugin for internationalization with Svelte", - "version": "0.0.1", + "version": "0.0.2", "publishConfig": { "access": "public" },