Skip to content

Commit fc089e9

Browse files
authored
Format (#181)
1 parent 6d00b49 commit fc089e9

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

docs/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Go to [Get Started](./started.md)
2525

2626
<p align="center">
2727
<a
28-
href="https://www.codeandweb.com/babeledit?utm_campaign=vue-i18n-2019-01"
28+
href="https://www.codeandweb.com/babeledit?utm_campaign=vue-i18n-2019-01"
2929
target="_blank">
3030
<img
3131
src="https://secure.codeandweb.com/static/babeledit.svg"
@@ -61,7 +61,6 @@ Go to [Get Started](./started.md)
6161
</a>
6262
</p>
6363

64-
6564
## Become a Sponsor
6665

6766
Is your company using eslint-plugin-vue-i18n, and related [Intlify](https://github.com/intlify) project i18n tools to build awesome apps? Become a sponsor to add your logo on this documentation! Supporting me on GitHub Sponsors and Patreon allows me to work less for a job and to work more on Free Open Source Software such as eslint-plugin-vue-i18n! Thank you!

docs/rules/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
| Rule ID | Description | |
1010
|:--------|:------------|:---|
1111
| [@intlify/vue-i18n/<wbr>no-deprecated-i18n-component](./no-deprecated-i18n-component.html) | disallow using deprecated `<i18n>` components (in Vue I18n 9.0.0+) | :black_nib: |
12-
| [@intlify/vue-i18n/<wbr>no-deprecated-i18n-places-prop](./no-deprecated-i18n-places-prop.html) | disallow using deprecated `places` prop (Removed in Vue I18n 9.0.0+) | |
1312
| [@intlify/vue-i18n/<wbr>no-deprecated-i18n-place-attr](./no-deprecated-i18n-place-attr.html) | disallow using deprecated `place` attribute (Removed in Vue I18n 9.0.0+) | |
13+
| [@intlify/vue-i18n/<wbr>no-deprecated-i18n-places-prop](./no-deprecated-i18n-places-prop.html) | disallow using deprecated `places` prop (Removed in Vue I18n 9.0.0+) | |
1414
| [@intlify/vue-i18n/<wbr>no-html-messages](./no-html-messages.html) | disallow use HTML localization messages | :star: |
1515
| [@intlify/vue-i18n/<wbr>no-i18n-t-path-prop](./no-i18n-t-path-prop.html) | disallow using `path` prop with `<i18n-t>` | :black_nib: |
1616
| [@intlify/vue-i18n/<wbr>no-missing-keys](./no-missing-keys.html) | disallow missing locale message key at localization methods | :star: |

lib/rules.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/** DON'T EDIT THIS FILE; was created by scripts. */
22
import keyFormatStyle from './rules/key-format-style'
33
import noDeprecatedI18nComponent from './rules/no-deprecated-i18n-component'
4-
import noDeprecatedI18nPlacesProp from './rules/no-deprecated-i18n-places-prop'
54
import noDeprecatedI18nPlaceAttr from './rules/no-deprecated-i18n-place-attr'
5+
import noDeprecatedI18nPlacesProp from './rules/no-deprecated-i18n-places-prop'
66
import noDuplicateKeysInLocale from './rules/no-duplicate-keys-in-locale'
77
import noDynamicKeys from './rules/no-dynamic-keys'
88
import noHtmlMessages from './rules/no-html-messages'
@@ -18,8 +18,8 @@ import validMessageSyntax from './rules/valid-message-syntax'
1818
export = {
1919
'key-format-style': keyFormatStyle,
2020
'no-deprecated-i18n-component': noDeprecatedI18nComponent,
21-
'no-deprecated-i18n-places-prop': noDeprecatedI18nPlacesProp,
2221
'no-deprecated-i18n-place-attr': noDeprecatedI18nPlaceAttr,
22+
'no-deprecated-i18n-places-prop': noDeprecatedI18nPlacesProp,
2323
'no-duplicate-keys-in-locale': noDuplicateKeysInLocale,
2424
'no-dynamic-keys': noDynamicKeys,
2525
'no-html-messages': noHtmlMessages,

0 commit comments

Comments
 (0)