Skip to content

Commit b56a11c

Browse files
authored
minor release v1.3.0 (#291)
* minor release v1.3.0 * update license * fix: lint error
1 parent c6ccf69 commit b56a11c

File tree

6 files changed

+28
-2
lines changed

6 files changed

+28
-2
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11

2+
## v1.3.0 (2022-02-11)
3+
4+
#### :star: Features
5+
* [#289](https://github.com/intlify/eslint-plugin-vue-i18n/pull/289) Add splitByDots option to key-format-style rule ([@ota-meshi](https://github.com/ota-meshi))
6+
* [#288](https://github.com/intlify/eslint-plugin-vue-i18n/pull/288) Add ignores option to no-unused-keys rule ([@ota-meshi](https://github.com/ota-meshi))
7+
* [#287](https://github.com/intlify/eslint-plugin-vue-i18n/pull/287) Add no-unknown-locale rule ([@ota-meshi](https://github.com/ota-meshi))
8+
* [#286](https://github.com/intlify/eslint-plugin-vue-i18n/pull/286) Add sfc-locale-attr rule ([@ota-meshi](https://github.com/ota-meshi))
9+
10+
#### :pencil: Documentation
11+
* [#274](https://github.com/intlify/eslint-plugin-vue-i18n/pull/274) Fix unordered list formatting in docs ([@FloEdelmann](https://github.com/FloEdelmann))
12+
13+
#### Committers: 2
14+
- Flo Edelmann ([@FloEdelmann](https://github.com/FloEdelmann))
15+
- Yosuke Ota ([@ota-meshi](https://github.com/ota-meshi))
16+
17+
218
## v1.2.0 (2021-11-18)
319

420
#### :star: Features

LICENSE

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
The MIT License (MIT)
22

3+
Copyright (c) 2021 Yosuke Ota
34
Copyright (c) 2019 kazuya kawaguchi
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy of

docs/rules/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,3 @@
3838
|:--------|:------------|:---|
3939
| [@intlify/vue-i18n/<wbr>prefer-linked-key-with-paren](./prefer-linked-key-with-paren.html) | enforce linked key to be enclosed in parentheses | :black_nib: |
4040
| [@intlify/vue-i18n/<wbr>sfc-locale-attr](./sfc-locale-attr.html) | require or disallow the locale attribute on `<i18n>` block | |
41-

docs/rules/no-unknown-locale.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: '@intlify/vue-i18n/no-unknown-locale'
33
description: disallow unknown locale name
4+
since: v1.3.0
45
---
56

67
# @intlify/vue-i18n/no-unknown-locale
@@ -60,6 +61,10 @@ The rule uses the [is-language-code] package to check if the locale name is comp
6061
- `locales` ... Specify the locale names you want to use specially in an array. The rule excludes the specified name from the check.
6162
- `disableRFC5646` ... If `true`, only the locale names listed in `locales` are allowed.
6263

64+
## :rocket: Version
65+
66+
This rule was introduced in `@intlify/eslint-plugin-vue-i18n` v1.3.0
67+
6368
## :mag: Implementation
6469

6570
- [Rule source](https://github.com/intlify/eslint-plugin-vue-i18n/blob/master/lib/rules/no-unknown-locale.ts)

docs/rules/sfc-locale-attr.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: '@intlify/vue-i18n/sfc-locale-attr'
33
description: require or disallow the locale attribute on `<i18n>` block
4+
since: v1.3.0
45
---
56

67
# @intlify/vue-i18n/sfc-locale-attr
@@ -83,6 +84,10 @@ This rule aims to enforce the `<i18n>` block to use or not the `locale` attribut
8384

8485
</eslint-code-block>
8586

87+
## :rocket: Version
88+
89+
This rule was introduced in `@intlify/eslint-plugin-vue-i18n` v1.3.0
90+
8691
## :mag: Implementation
8792

8893
- [Rule source](https://github.com/intlify/eslint-plugin-vue-i18n/blob/master/lib/rules/sfc-locale-attr.ts)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@intlify/eslint-plugin-vue-i18n",
33
"description": "ESLint plugin for Vue I18n",
4-
"version": "1.2.0",
4+
"version": "1.3.0",
55
"author": {
66
"name": "kazuya kawaguchi",
77
"email": "[email protected]"

0 commit comments

Comments
 (0)