eslint-plugin-formatjs 4.2.0 → 4.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +22 -0
- package/index.d.ts.map +1 -0
- package/index.js +38 -0
- package/package.json +3 -3
- package/rules/blocklist-elements.d.ts +4 -0
- package/rules/blocklist-elements.d.ts.map +1 -0
- package/rules/blocklist-elements.js +127 -0
- package/rules/enforce-default-message.d.ts +4 -0
- package/rules/enforce-default-message.d.ts.map +1 -0
- package/rules/enforce-default-message.js +57 -0
- package/rules/enforce-description.d.ts +4 -0
- package/rules/enforce-description.d.ts.map +1 -0
- package/rules/enforce-description.js +54 -0
- package/rules/enforce-id.d.ts +4 -0
- package/rules/enforce-id.d.ts.map +1 -0
- package/rules/enforce-id.js +125 -0
- package/rules/enforce-placeholders.d.ts +4 -0
- package/rules/enforce-placeholders.d.ts.map +1 -0
- package/rules/enforce-placeholders.js +118 -0
- package/rules/enforce-plural-rules.d.ts +4 -0
- package/rules/enforce-plural-rules.d.ts.map +1 -0
- package/rules/enforce-plural-rules.js +104 -0
- package/rules/no-camel-case.d.ts +4 -0
- package/rules/no-camel-case.d.ts.map +1 -0
- package/rules/no-camel-case.js +77 -0
- package/rules/no-complex-selectors.d.ts +4 -0
- package/rules/no-complex-selectors.d.ts.map +1 -0
- package/rules/no-complex-selectors.js +99 -0
- package/rules/no-emoji.d.ts +4 -0
- package/rules/no-emoji.d.ts.map +1 -0
- package/rules/no-emoji.js +47 -0
- package/rules/no-id.d.ts +4 -0
- package/rules/no-id.d.ts.map +1 -0
- package/rules/no-id.js +52 -0
- package/rules/no-invalid-icu.d.ts +4 -0
- package/rules/no-invalid-icu.d.ts.map +1 -0
- package/rules/no-invalid-icu.js +54 -0
- package/rules/no-literal-string-in-jsx.d.ts +4 -0
- package/rules/no-literal-string-in-jsx.d.ts.map +1 -0
- package/rules/no-literal-string-in-jsx.js +166 -0
- package/rules/no-multiple-plurals.d.ts +4 -0
- package/rules/no-multiple-plurals.d.ts.map +1 -0
- package/rules/no-multiple-plurals.js +71 -0
- package/rules/no-multiple-whitespaces.d.ts +4 -0
- package/rules/no-multiple-whitespaces.d.ts.map +1 -0
- package/rules/no-multiple-whitespaces.js +146 -0
- package/rules/no-offset.d.ts +4 -0
- package/rules/no-offset.d.ts.map +1 -0
- package/rules/no-offset.js +70 -0
- package/util.d.ts +24 -0
- package/util.d.ts.map +1 -0
- package/util.js +240 -0
- package/BUILD +0 -89
- package/CHANGELOG.md +0 -892
- package/index.ts +0 -38
- package/rules/blocklist-elements.ts +0 -159
- package/rules/enforce-default-message.ts +0 -71
- package/rules/enforce-description.ts +0 -68
- package/rules/enforce-id.ts +0 -171
- package/rules/enforce-placeholders.ts +0 -161
- package/rules/enforce-plural-rules.ts +0 -134
- package/rules/no-camel-case.ts +0 -97
- package/rules/no-complex-selectors.ts +0 -125
- package/rules/no-emoji.ts +0 -60
- package/rules/no-id.ts +0 -63
- package/rules/no-invalid-icu.ts +0 -69
- package/rules/no-literal-string-in-jsx.ts +0 -213
- package/rules/no-multiple-plurals.ts +0 -89
- package/rules/no-multiple-whitespaces.ts +0 -194
- package/rules/no-offset.ts +0 -88
- package/tests/blocklist-elements.test.ts +0 -120
- package/tests/enforce-default-message.test.ts +0 -260
- package/tests/enforce-description.test.ts +0 -117
- package/tests/enforce-id.test.ts +0 -209
- package/tests/enforce-placeholders.test.ts +0 -170
- package/tests/enforce-plural-rules.test.ts +0 -86
- package/tests/fixtures.ts +0 -15
- package/tests/no-camel-case.test.ts +0 -31
- package/tests/no-complex-selectors.test.ts +0 -125
- package/tests/no-id.test.ts +0 -151
- package/tests/no-invalid-icu.test.ts +0 -106
- package/tests/no-literal-string-in-jsx.test.ts +0 -213
- package/tests/no-multiple-plurals.test.ts +0 -42
- package/tests/no-multiple-whitespaces.test.ts +0 -100
- package/tests/no-offset.test.ts +0 -41
- package/tests/util.ts +0 -26
- package/tsconfig.json +0 -5
- package/util.ts +0 -307
package/CHANGELOG.md
DELETED
|
@@ -1,892 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
# [4.2.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@4.1.0...eslint-plugin-formatjs@4.2.0) (2022-08-18)
|
|
7
|
-
|
|
8
|
-
### Features
|
|
9
|
-
|
|
10
|
-
* **eslint-plugin-formatjs:** allow scoping settings to formatjs ([#3766](https://github.com/formatjs/formatjs/issues/3766)) ([0db373f](https://github.com/formatjs/formatjs/commit/0db373fad7e4b4cf3bef6136b0b820536683125f))
|
|
11
|
-
|
|
12
|
-
# [4.1.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@4.0.2...eslint-plugin-formatjs@4.1.0) (2022-08-08)
|
|
13
|
-
|
|
14
|
-
### Features
|
|
15
|
-
|
|
16
|
-
* **eslint-plugin-formatjs:** add no-invalid-icu eslint rule ([#3740](https://github.com/formatjs/formatjs/issues/3740)) ([d394a5e](https://github.com/formatjs/formatjs/commit/d394a5e6d20577fd5e7bf0b15bbbee5dd9bc9d67))
|
|
17
|
-
|
|
18
|
-
## [4.0.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@4.0.1...eslint-plugin-formatjs@4.0.2) (2022-07-04)
|
|
19
|
-
|
|
20
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
21
|
-
|
|
22
|
-
## [4.0.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@4.0.0...eslint-plugin-formatjs@4.0.1) (2022-06-21)
|
|
23
|
-
|
|
24
|
-
### Bug Fixes
|
|
25
|
-
|
|
26
|
-
* **eslint-plugin-formatjs:** actually add no-literal-string-in-jsx to the plugin registry ([#3680](https://github.com/formatjs/formatjs/issues/3680)) ([f834cd5](https://github.com/formatjs/formatjs/commit/f834cd590e7b01052e017515c284e6512babcfd9))
|
|
27
|
-
|
|
28
|
-
# [4.0.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@3.1.5...eslint-plugin-formatjs@4.0.0) (2022-06-21)
|
|
29
|
-
|
|
30
|
-
### Bug Fixes
|
|
31
|
-
|
|
32
|
-
* **@formatjs/eslint-plugin-formatjs:** handle ICU message syntax error in no-complex-selectors rule ([dc8ecdc](https://github.com/formatjs/formatjs/commit/dc8ecdcb94efd592d4169a618ab60b6b80122290))
|
|
33
|
-
|
|
34
|
-
### Features
|
|
35
|
-
|
|
36
|
-
* **eslint-plugin-formatjs:** introduce no-literal-string-in-jsx ([#3674](https://github.com/formatjs/formatjs/issues/3674)) ([a5da037](https://github.com/formatjs/formatjs/commit/a5da0375a1703f60be1da06903e0982ddfc3b06e))
|
|
37
|
-
* **eslint-plugin-formatjs:** no-multiple-whitespaces now allows whitespaces in non-literals ([#3671](https://github.com/formatjs/formatjs/issues/3671)) ([3cf262a](https://github.com/formatjs/formatjs/commit/3cf262a3c74ce1989aaec44d3459c32f65bad452))
|
|
38
|
-
|
|
39
|
-
## [3.1.5](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@3.1.4...eslint-plugin-formatjs@3.1.5) (2022-06-06)
|
|
40
|
-
|
|
41
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
42
|
-
|
|
43
|
-
## [3.1.4](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@3.1.3...eslint-plugin-formatjs@3.1.4) (2022-05-20)
|
|
44
|
-
|
|
45
|
-
### Bug Fixes
|
|
46
|
-
|
|
47
|
-
* **eslint-plugin-formatjs:** fix description obj serialization, fix [#3575](https://github.com/formatjs/formatjs/issues/3575) ([83c1fe0](https://github.com/formatjs/formatjs/commit/83c1fe0fade75b568b0600badbc9e4e09f5cba5a))
|
|
48
|
-
|
|
49
|
-
## [3.1.3](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@3.1.2...eslint-plugin-formatjs@3.1.3) (2022-05-19)
|
|
50
|
-
|
|
51
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
52
|
-
|
|
53
|
-
## [3.1.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@3.1.1...eslint-plugin-formatjs@3.1.2) (2022-05-19)
|
|
54
|
-
|
|
55
|
-
### Bug Fixes
|
|
56
|
-
|
|
57
|
-
* **react-intl:** fix type issue with react18, fix [#3550](https://github.com/formatjs/formatjs/issues/3550) ([2567b93](https://github.com/formatjs/formatjs/commit/2567b932c5d18b097a43842563046c20ce0c49f1))
|
|
58
|
-
|
|
59
|
-
## [3.1.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@3.1.0...eslint-plugin-formatjs@3.1.1) (2022-04-27)
|
|
60
|
-
|
|
61
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
62
|
-
|
|
63
|
-
# [3.1.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@3.0.1...eslint-plugin-formatjs@3.1.0) (2022-03-26)
|
|
64
|
-
|
|
65
|
-
### Features
|
|
66
|
-
|
|
67
|
-
* **eslint-plugin-formatjs:** allow eslint 7 ([260b0ec](https://github.com/formatjs/formatjs/commit/260b0ec2e74fb634f469ef640131a1b0f1fae72d))
|
|
68
|
-
|
|
69
|
-
## [3.0.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@3.0.0...eslint-plugin-formatjs@3.0.1) (2022-03-26)
|
|
70
|
-
|
|
71
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
72
|
-
|
|
73
|
-
# [3.0.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.21.0...eslint-plugin-formatjs@3.0.0) (2022-02-06)
|
|
74
|
-
|
|
75
|
-
### Features
|
|
76
|
-
|
|
77
|
-
* **eslint-plugin-formatjs:** rename `blacklist` to `blocklist`, fix [#3399](https://github.com/formatjs/formatjs/issues/3399) ([d363881](https://github.com/formatjs/formatjs/commit/d363881c87e6d792c4e933cd0167d1b3faa0897a))
|
|
78
|
-
|
|
79
|
-
### BREAKING CHANGES
|
|
80
|
-
|
|
81
|
-
* **eslint-plugin-formatjs:** This changes the rule name from `blacklist-elements` to `blocklist-elements`
|
|
82
|
-
|
|
83
|
-
# [2.21.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.20.5...eslint-plugin-formatjs@2.21.0) (2022-02-06)
|
|
84
|
-
|
|
85
|
-
### Features
|
|
86
|
-
|
|
87
|
-
* **eslint-plugin-formatjs:** add `idWhitelist` option to `enforce-id` rule ([#3374](https://github.com/formatjs/formatjs/issues/3374)) ([7538296](https://github.com/formatjs/formatjs/commit/75382963a515d22ed295dd461333fd2ed91bcc0f))
|
|
88
|
-
|
|
89
|
-
## [2.20.5](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.20.4...eslint-plugin-formatjs@2.20.5) (2022-01-24)
|
|
90
|
-
|
|
91
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
92
|
-
|
|
93
|
-
## [2.20.4](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.20.3...eslint-plugin-formatjs@2.20.4) (2022-01-20)
|
|
94
|
-
|
|
95
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
96
|
-
|
|
97
|
-
## [2.20.3](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.20.2...eslint-plugin-formatjs@2.20.3) (2022-01-14)
|
|
98
|
-
|
|
99
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
100
|
-
|
|
101
|
-
## [2.20.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.20.1...eslint-plugin-formatjs@2.20.2) (2022-01-09)
|
|
102
|
-
|
|
103
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
104
|
-
|
|
105
|
-
## [2.20.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.20.0...eslint-plugin-formatjs@2.20.1) (2022-01-03)
|
|
106
|
-
|
|
107
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
108
|
-
|
|
109
|
-
# [2.20.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.19.1...eslint-plugin-formatjs@2.20.0) (2022-01-03)
|
|
110
|
-
|
|
111
|
-
### Features
|
|
112
|
-
|
|
113
|
-
* **eslint-plugin-formatjs:** bump eslint peerDep version to 8 ([d143d38](https://github.com/formatjs/formatjs/commit/d143d38ea1115b2481e2dad71b2d934ca2e3cedc))
|
|
114
|
-
|
|
115
|
-
## [2.19.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.19.0...eslint-plugin-formatjs@2.19.1) (2021-12-20)
|
|
116
|
-
|
|
117
|
-
### Bug Fixes
|
|
118
|
-
|
|
119
|
-
* **eslint-plugin-formatjs:** fix empty FormatMessage case, fix [#3304](https://github.com/formatjs/formatjs/issues/3304) ([e71a705](https://github.com/formatjs/formatjs/commit/e71a70509b104e81e70e66c6e6d2678e27aa4411))
|
|
120
|
-
* **eslint-plugin-formatjs:** fix missing error when missing placeholder used inside tag ([#3310](https://github.com/formatjs/formatjs/issues/3310)) ([d65306a](https://github.com/formatjs/formatjs/commit/d65306aacc6fbe5109c3a4a6b898873a482cf7ec))
|
|
121
|
-
|
|
122
|
-
# [2.19.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.18.0...eslint-plugin-formatjs@2.19.0) (2021-12-01)
|
|
123
|
-
|
|
124
|
-
### Features
|
|
125
|
-
|
|
126
|
-
* support TS 4.5, fix [#3276](https://github.com/formatjs/formatjs/issues/3276) ([31e0699](https://github.com/formatjs/formatjs/commit/31e069972aa16e14532531b9e597cff73a3f4897))
|
|
127
|
-
|
|
128
|
-
# [2.18.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.17.9...eslint-plugin-formatjs@2.18.0) (2021-10-22)
|
|
129
|
-
|
|
130
|
-
### Features
|
|
131
|
-
|
|
132
|
-
* **eslint-plugin-formatjs:** upgrade to TS 4.4 ([d45d3c1](https://github.com/formatjs/formatjs/commit/d45d3c19e37f64fdf3eb4dfefa6f976fadedbd9f))
|
|
133
|
-
|
|
134
|
-
## [2.17.9](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.17.8...eslint-plugin-formatjs@2.17.9) (2021-10-17)
|
|
135
|
-
|
|
136
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
137
|
-
|
|
138
|
-
## [2.17.8](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.17.7...eslint-plugin-formatjs@2.17.8) (2021-09-27)
|
|
139
|
-
|
|
140
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
141
|
-
|
|
142
|
-
## [2.17.7](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.17.6...eslint-plugin-formatjs@2.17.7) (2021-09-26)
|
|
143
|
-
|
|
144
|
-
### Bug Fixes
|
|
145
|
-
|
|
146
|
-
* **eslint-plugin-formatjs:** remove deprecated @types/emoji-regex 9 ([#3159](https://github.com/formatjs/formatjs/issues/3159)) ([49b9dfb](https://github.com/formatjs/formatjs/commit/49b9dfb969f08d3ba4b5fbefddecdd82070f156c))
|
|
147
|
-
|
|
148
|
-
## [2.17.6](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.17.5...eslint-plugin-formatjs@2.17.6) (2021-08-24)
|
|
149
|
-
|
|
150
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
151
|
-
|
|
152
|
-
## [2.17.5](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.17.4...eslint-plugin-formatjs@2.17.5) (2021-08-21)
|
|
153
|
-
|
|
154
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
155
|
-
|
|
156
|
-
## [2.17.4](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.17.3...eslint-plugin-formatjs@2.17.4) (2021-08-15)
|
|
157
|
-
|
|
158
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
159
|
-
|
|
160
|
-
## [2.17.3](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.17.2...eslint-plugin-formatjs@2.17.3) (2021-08-06)
|
|
161
|
-
|
|
162
|
-
### Bug Fixes
|
|
163
|
-
|
|
164
|
-
* **eslint-plugin-formatjs:** declare dep on typescript, fix [#3099](https://github.com/formatjs/formatjs/issues/3099) ([d97e301](https://github.com/formatjs/formatjs/commit/d97e301f77b96e70c536e6bc668152e47a85ce6c))
|
|
165
|
-
|
|
166
|
-
## [2.17.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.17.1...eslint-plugin-formatjs@2.17.2) (2021-07-24)
|
|
167
|
-
|
|
168
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
169
|
-
|
|
170
|
-
## [2.17.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.17.0...eslint-plugin-formatjs@2.17.1) (2021-07-06)
|
|
171
|
-
|
|
172
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
173
|
-
|
|
174
|
-
# [2.17.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.16.1...eslint-plugin-formatjs@2.17.0) (2021-06-26)
|
|
175
|
-
|
|
176
|
-
### Features
|
|
177
|
-
|
|
178
|
-
* **eslint-plugin-formatjs:** allow setting ignoreTag as global linter settings, fix [#2998](https://github.com/formatjs/formatjs/issues/2998) ([8aaa11c](https://github.com/formatjs/formatjs/commit/8aaa11c4322d95e409f40c86d6ee9ccd6b556474))
|
|
179
|
-
|
|
180
|
-
## [2.16.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.16.0...eslint-plugin-formatjs@2.16.1) (2021-06-21)
|
|
181
|
-
|
|
182
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
183
|
-
|
|
184
|
-
# [2.16.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.15.7...eslint-plugin-formatjs@2.16.0) (2021-06-13)
|
|
185
|
-
|
|
186
|
-
### Features
|
|
187
|
-
|
|
188
|
-
* **eslint-plugin-formatjs:** allow additionalFunctionNames & additionalComponentNames in shared settings, fix [#2967](https://github.com/formatjs/formatjs/issues/2967) ([c19b0ea](https://github.com/formatjs/formatjs/commit/c19b0eae3b28d99276a6c2da288b51d0c32ff3be))
|
|
189
|
-
* **eslint-plugin-formatjs:** rm react-intl package import check for function names and components ([5c7aeba](https://github.com/formatjs/formatjs/commit/5c7aeba2d6e281de390b50811691a40e08f8b34d))
|
|
190
|
-
|
|
191
|
-
## [2.15.7](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.15.6...eslint-plugin-formatjs@2.15.7) (2021-06-09)
|
|
192
|
-
|
|
193
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
194
|
-
|
|
195
|
-
## [2.15.6](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.15.5...eslint-plugin-formatjs@2.15.6) (2021-06-05)
|
|
196
|
-
|
|
197
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
198
|
-
|
|
199
|
-
## [2.15.5](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.15.4...eslint-plugin-formatjs@2.15.5) (2021-06-04)
|
|
200
|
-
|
|
201
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
202
|
-
|
|
203
|
-
## [2.15.4](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.15.3...eslint-plugin-formatjs@2.15.4) (2021-06-01)
|
|
204
|
-
|
|
205
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
206
|
-
|
|
207
|
-
## [2.15.3](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.15.2...eslint-plugin-formatjs@2.15.3) (2021-05-23)
|
|
208
|
-
|
|
209
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
210
|
-
|
|
211
|
-
## [2.15.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.15.1...eslint-plugin-formatjs@2.15.2) (2021-05-20)
|
|
212
|
-
|
|
213
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
214
|
-
|
|
215
|
-
## [2.15.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.15.0...eslint-plugin-formatjs@2.15.1) (2021-05-17)
|
|
216
|
-
|
|
217
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
218
|
-
|
|
219
|
-
# [2.15.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.14.10...eslint-plugin-formatjs@2.15.0) (2021-05-10)
|
|
220
|
-
|
|
221
|
-
### Features
|
|
222
|
-
|
|
223
|
-
* **eslint-plugin-formatjs:** update typescript-eslint ([#2865](https://github.com/formatjs/formatjs/issues/2865)) ([3a692ab](https://github.com/formatjs/formatjs/commit/3a692ab1a9474db835f7884b91852f690c07eb7c))
|
|
224
|
-
|
|
225
|
-
## [2.14.10](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.14.9...eslint-plugin-formatjs@2.14.10) (2021-05-02)
|
|
226
|
-
|
|
227
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
228
|
-
|
|
229
|
-
## [2.14.9](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.14.8...eslint-plugin-formatjs@2.14.9) (2021-04-26)
|
|
230
|
-
|
|
231
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
232
|
-
|
|
233
|
-
## [2.14.8](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.14.7...eslint-plugin-formatjs@2.14.8) (2021-04-26)
|
|
234
|
-
|
|
235
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
236
|
-
|
|
237
|
-
## [2.14.7](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.14.6...eslint-plugin-formatjs@2.14.7) (2021-04-21)
|
|
238
|
-
|
|
239
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
240
|
-
|
|
241
|
-
## [2.14.6](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.14.5...eslint-plugin-formatjs@2.14.6) (2021-04-12)
|
|
242
|
-
|
|
243
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
244
|
-
|
|
245
|
-
## [2.14.5](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.14.4...eslint-plugin-formatjs@2.14.5) (2021-04-04)
|
|
246
|
-
|
|
247
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
248
|
-
|
|
249
|
-
## [2.14.4](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.14.3...eslint-plugin-formatjs@2.14.4) (2021-04-03)
|
|
250
|
-
|
|
251
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
252
|
-
|
|
253
|
-
## [2.14.3](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.14.2...eslint-plugin-formatjs@2.14.3) (2021-03-30)
|
|
254
|
-
|
|
255
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
256
|
-
|
|
257
|
-
## [2.14.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.14.1...eslint-plugin-formatjs@2.14.2) (2021-03-28)
|
|
258
|
-
|
|
259
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
260
|
-
|
|
261
|
-
## [2.14.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.14.0...eslint-plugin-formatjs@2.14.1) (2021-03-28)
|
|
262
|
-
|
|
263
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
264
|
-
|
|
265
|
-
# [2.14.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.13.2...eslint-plugin-formatjs@2.14.0) (2021-03-28)
|
|
266
|
-
|
|
267
|
-
### Features
|
|
268
|
-
|
|
269
|
-
* **eslint-plugin-formatjs:** add no-complex-selectors rule ([f3b1c15](https://github.com/formatjs/formatjs/commit/f3b1c15a510818ade85ff5d5efefda815eeea5a2))
|
|
270
|
-
|
|
271
|
-
## [2.13.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.13.1...eslint-plugin-formatjs@2.13.2) (2021-03-28)
|
|
272
|
-
|
|
273
|
-
### Bug Fixes
|
|
274
|
-
|
|
275
|
-
* **eslint-plugin-formatjs:** rm unnecessary imports, fix [#2756](https://github.com/formatjs/formatjs/issues/2756) ([8920a6a](https://github.com/formatjs/formatjs/commit/8920a6aab10bb2c8bbdf40aa41229af66e3810fe))
|
|
276
|
-
|
|
277
|
-
## [2.13.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.13.0...eslint-plugin-formatjs@2.13.1) (2021-03-27)
|
|
278
|
-
|
|
279
|
-
### Bug Fixes
|
|
280
|
-
|
|
281
|
-
* **eslint-plugin-formatjs:** fix missing dep ([d3b1532](https://github.com/formatjs/formatjs/commit/d3b15329fed2f2ab63e81f13172c7dee33b5baa1))
|
|
282
|
-
|
|
283
|
-
# [2.13.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.12.9...eslint-plugin-formatjs@2.13.0) (2021-03-27)
|
|
284
|
-
|
|
285
|
-
### Features
|
|
286
|
-
|
|
287
|
-
* **eslint-plugin-formatjs:** switch parser to @formatjs/icu-messageformat-parser (6x faster) ([09ff05e](https://github.com/formatjs/formatjs/commit/09ff05e843767f75690c11149a55cb8672271126))
|
|
288
|
-
|
|
289
|
-
## [2.12.9](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.12.8...eslint-plugin-formatjs@2.12.9) (2021-03-26)
|
|
290
|
-
|
|
291
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
292
|
-
|
|
293
|
-
## [2.12.8](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.12.7...eslint-plugin-formatjs@2.12.8) (2021-03-15)
|
|
294
|
-
|
|
295
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
296
|
-
|
|
297
|
-
## [2.12.7](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.12.6...eslint-plugin-formatjs@2.12.7) (2021-03-01)
|
|
298
|
-
|
|
299
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
300
|
-
|
|
301
|
-
## [2.12.6](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.12.5...eslint-plugin-formatjs@2.12.6) (2021-02-25)
|
|
302
|
-
|
|
303
|
-
### Bug Fixes
|
|
304
|
-
|
|
305
|
-
* bump tslib version dep ([37577d2](https://github.com/formatjs/formatjs/commit/37577d22bf28d23de1d8013ba0047cf221ad8840)), closes [#2645](https://github.com/formatjs/formatjs/issues/2645)
|
|
306
|
-
|
|
307
|
-
## [2.12.5](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.12.4...eslint-plugin-formatjs@2.12.5) (2021-02-25)
|
|
308
|
-
|
|
309
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
310
|
-
|
|
311
|
-
## [2.12.4](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.12.3...eslint-plugin-formatjs@2.12.4) (2021-02-22)
|
|
312
|
-
|
|
313
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
314
|
-
|
|
315
|
-
## [2.12.3](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.12.2...eslint-plugin-formatjs@2.12.3) (2021-02-21)
|
|
316
|
-
|
|
317
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
318
|
-
|
|
319
|
-
## [2.12.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.12.1...eslint-plugin-formatjs@2.12.2) (2021-02-21)
|
|
320
|
-
|
|
321
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
322
|
-
|
|
323
|
-
## [2.12.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.12.0...eslint-plugin-formatjs@2.12.1) (2021-02-13)
|
|
324
|
-
|
|
325
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
326
|
-
|
|
327
|
-
# [2.12.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.10.7...eslint-plugin-formatjs@2.12.0) (2021-02-02)
|
|
328
|
-
|
|
329
|
-
### Features
|
|
330
|
-
|
|
331
|
-
* **eslint-plugin-formatjs:** support template literal without var, fix [#2527](https://github.com/formatjs/formatjs/issues/2527) ([a048e25](https://github.com/formatjs/formatjs/commit/a048e25a5f4cc32b1602b00dbf982282aac97773))
|
|
332
|
-
|
|
333
|
-
# [2.11.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.10.7...eslint-plugin-formatjs@2.11.0) (2021-01-29)
|
|
334
|
-
|
|
335
|
-
### Features
|
|
336
|
-
|
|
337
|
-
* **eslint-plugin-formatjs:** support template literal without var, fix [#2527](https://github.com/formatjs/formatjs/issues/2527) ([a048e25](https://github.com/formatjs/formatjs/commit/a048e25a5f4cc32b1602b00dbf982282aac97773))
|
|
338
|
-
|
|
339
|
-
## [2.10.7](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.10.6...eslint-plugin-formatjs@2.10.7) (2021-01-27)
|
|
340
|
-
|
|
341
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
342
|
-
|
|
343
|
-
## [2.10.6](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.10.5...eslint-plugin-formatjs@2.10.6) (2021-01-26)
|
|
344
|
-
|
|
345
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
346
|
-
|
|
347
|
-
## [2.10.5](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.10.4...eslint-plugin-formatjs@2.10.5) (2021-01-25)
|
|
348
|
-
|
|
349
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
350
|
-
|
|
351
|
-
## [2.10.4](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.10.3...eslint-plugin-formatjs@2.10.4) (2021-01-22)
|
|
352
|
-
|
|
353
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
354
|
-
|
|
355
|
-
## [2.10.3](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.10.2...eslint-plugin-formatjs@2.10.3) (2021-01-05)
|
|
356
|
-
|
|
357
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
358
|
-
|
|
359
|
-
## [2.10.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.10.1...eslint-plugin-formatjs@2.10.2) (2021-01-04)
|
|
360
|
-
|
|
361
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
362
|
-
|
|
363
|
-
## [2.10.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.10.0...eslint-plugin-formatjs@2.10.1) (2021-01-04)
|
|
364
|
-
|
|
365
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
366
|
-
|
|
367
|
-
# [2.10.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.9.13...eslint-plugin-formatjs@2.10.0) (2021-01-02)
|
|
368
|
-
|
|
369
|
-
### Features
|
|
370
|
-
|
|
371
|
-
* **eslint-plugin-formatjs:** add support for .vue ([2f73827](https://github.com/formatjs/formatjs/commit/2f73827b22c06ce4ee98744c48de6357097c4816))
|
|
372
|
-
|
|
373
|
-
## [2.9.13](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.9.12...eslint-plugin-formatjs@2.9.13) (2021-01-02)
|
|
374
|
-
|
|
375
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
376
|
-
|
|
377
|
-
## [2.9.12](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.9.11...eslint-plugin-formatjs@2.9.12) (2021-01-01)
|
|
378
|
-
|
|
379
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
380
|
-
|
|
381
|
-
## [2.9.11](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.9.10...eslint-plugin-formatjs@2.9.11) (2020-12-17)
|
|
382
|
-
|
|
383
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
384
|
-
|
|
385
|
-
## [2.9.10](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.9.9...eslint-plugin-formatjs@2.9.10) (2020-11-27)
|
|
386
|
-
|
|
387
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
388
|
-
|
|
389
|
-
## [2.9.9](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.9.8...eslint-plugin-formatjs@2.9.9) (2020-11-26)
|
|
390
|
-
|
|
391
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
392
|
-
|
|
393
|
-
## [2.9.8](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.9.7...eslint-plugin-formatjs@2.9.8) (2020-11-20)
|
|
394
|
-
|
|
395
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
396
|
-
|
|
397
|
-
## [2.9.7](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.9.6...eslint-plugin-formatjs@2.9.7) (2020-11-12)
|
|
398
|
-
|
|
399
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
400
|
-
|
|
401
|
-
## [2.9.6](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.9.5...eslint-plugin-formatjs@2.9.6) (2020-11-10)
|
|
402
|
-
|
|
403
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
404
|
-
|
|
405
|
-
## [2.9.5](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.9.4...eslint-plugin-formatjs@2.9.5) (2020-11-09)
|
|
406
|
-
|
|
407
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
408
|
-
|
|
409
|
-
## [2.9.4](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.9.3...eslint-plugin-formatjs@2.9.4) (2020-11-09)
|
|
410
|
-
|
|
411
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
412
|
-
|
|
413
|
-
## [2.9.3](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.9.2...eslint-plugin-formatjs@2.9.3) (2020-11-05)
|
|
414
|
-
|
|
415
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
416
|
-
|
|
417
|
-
## [2.9.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.9.1...eslint-plugin-formatjs@2.9.2) (2020-11-05)
|
|
418
|
-
|
|
419
|
-
### Bug Fixes
|
|
420
|
-
|
|
421
|
-
* **eslint-plugin-formatjs:** lock down monorepo dep version ([3b425a3](https://github.com/formatjs/formatjs/commit/3b425a3107afbb710cfeaebc27d4dfd9a42d08ed))
|
|
422
|
-
|
|
423
|
-
## [2.9.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.9.0...eslint-plugin-formatjs@2.9.1) (2020-11-04)
|
|
424
|
-
|
|
425
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
426
|
-
|
|
427
|
-
# [2.9.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.8.0...eslint-plugin-formatjs@2.9.0) (2020-10-30)
|
|
428
|
-
|
|
429
|
-
### Features
|
|
430
|
-
|
|
431
|
-
* **eslint-plugin-formatjs:** add ignoreList option to enforce-placeholders, fix [#2262](https://github.com/formatjs/formatjs/issues/2262) ([a10e00c](https://github.com/formatjs/formatjs/commit/a10e00c0c923c51c493c34de95d4b07c93f1bf12))
|
|
432
|
-
* **eslint-plugin-formatjs:** makes idInterpolationPattern optional in enforce-id, fix [#2263](https://github.com/formatjs/formatjs/issues/2263) ([6289c28](https://github.com/formatjs/formatjs/commit/6289c28acf7671ee8ed08f73d3b72dc73522dc18))
|
|
433
|
-
|
|
434
|
-
# [2.8.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.17...eslint-plugin-formatjs@2.8.0) (2020-10-28)
|
|
435
|
-
|
|
436
|
-
### Features
|
|
437
|
-
|
|
438
|
-
* **eslint-plugin-formatjs:** support string concat, fix [#2252](https://github.com/formatjs/formatjs/issues/2252) ([cbeee5e](https://github.com/formatjs/formatjs/commit/cbeee5e2d2be610374cad3dda8cf12adf81781b6))
|
|
439
|
-
|
|
440
|
-
## [2.7.17](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.16...eslint-plugin-formatjs@2.7.17) (2020-10-27)
|
|
441
|
-
|
|
442
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
443
|
-
|
|
444
|
-
## [2.7.16](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.15...eslint-plugin-formatjs@2.7.16) (2020-10-25)
|
|
445
|
-
|
|
446
|
-
### Bug Fixes
|
|
447
|
-
|
|
448
|
-
* **eslint-plugin-formatjs:** fix extraction filter, fix [#2238](https://github.com/formatjs/formatjs/issues/2238) ([f9f2c3e](https://github.com/formatjs/formatjs/commit/f9f2c3eadff49b1245d80c21efd4912eefd53c3d))
|
|
449
|
-
|
|
450
|
-
## [2.7.15](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.14...eslint-plugin-formatjs@2.7.15) (2020-10-10)
|
|
451
|
-
|
|
452
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
453
|
-
|
|
454
|
-
## [2.7.14](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.13...eslint-plugin-formatjs@2.7.14) (2020-10-08)
|
|
455
|
-
|
|
456
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
457
|
-
|
|
458
|
-
## [2.7.13](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.12...eslint-plugin-formatjs@2.7.13) (2020-10-01)
|
|
459
|
-
|
|
460
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
461
|
-
|
|
462
|
-
## [2.7.12](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.11...eslint-plugin-formatjs@2.7.12) (2020-09-25)
|
|
463
|
-
|
|
464
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
465
|
-
|
|
466
|
-
## [2.7.11](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.10...eslint-plugin-formatjs@2.7.11) (2020-09-18)
|
|
467
|
-
|
|
468
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
469
|
-
|
|
470
|
-
## [2.7.10](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.9...eslint-plugin-formatjs@2.7.10) (2020-09-12)
|
|
471
|
-
|
|
472
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
473
|
-
|
|
474
|
-
## [2.7.9](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.8...eslint-plugin-formatjs@2.7.9) (2020-09-09)
|
|
475
|
-
|
|
476
|
-
### Bug Fixes
|
|
477
|
-
|
|
478
|
-
* **eslint-plugin-formatjs:** fix enforce-id fixer logic, fix [#2072](https://github.com/formatjs/formatjs/issues/2072) ([00f56cb](https://github.com/formatjs/formatjs/commit/00f56cb63ff9790626d2b660331251df8e16de16))
|
|
479
|
-
|
|
480
|
-
## [2.7.8](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.7...eslint-plugin-formatjs@2.7.8) (2020-09-03)
|
|
481
|
-
|
|
482
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
483
|
-
|
|
484
|
-
## [2.7.7](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.6...eslint-plugin-formatjs@2.7.7) (2020-08-30)
|
|
485
|
-
|
|
486
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
487
|
-
|
|
488
|
-
## [2.7.6](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.5...eslint-plugin-formatjs@2.7.6) (2020-08-28)
|
|
489
|
-
|
|
490
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
491
|
-
|
|
492
|
-
## [2.7.5](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.4...eslint-plugin-formatjs@2.7.5) (2020-08-25)
|
|
493
|
-
|
|
494
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
495
|
-
|
|
496
|
-
## [2.7.4](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.3...eslint-plugin-formatjs@2.7.4) (2020-08-22)
|
|
497
|
-
|
|
498
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
499
|
-
|
|
500
|
-
## [2.7.3](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.2...eslint-plugin-formatjs@2.7.3) (2020-08-21)
|
|
501
|
-
|
|
502
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
503
|
-
|
|
504
|
-
## [2.7.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.1...eslint-plugin-formatjs@2.7.2) (2020-08-20)
|
|
505
|
-
|
|
506
|
-
### Bug Fixes
|
|
507
|
-
|
|
508
|
-
* bump intl-messageformat-parser ([8bbfa04](https://github.com/formatjs/formatjs/commit/8bbfa047da159662700b7e500879da20e54c0f0b))
|
|
509
|
-
|
|
510
|
-
## [2.7.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.7.0...eslint-plugin-formatjs@2.7.1) (2020-08-19)
|
|
511
|
-
|
|
512
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
513
|
-
|
|
514
|
-
# [2.7.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.6.5...eslint-plugin-formatjs@2.7.0) (2020-08-19)
|
|
515
|
-
|
|
516
|
-
### Features
|
|
517
|
-
|
|
518
|
-
* **eslint-plugin-formatjs:** remove supported-datetime-skeleton ([ad60b3b](https://github.com/formatjs/formatjs/commit/ad60b3bb641ba73a1cc9524aace10b7b2615035b))
|
|
519
|
-
|
|
520
|
-
## [2.6.5](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.6.4...eslint-plugin-formatjs@2.6.5) (2020-08-18)
|
|
521
|
-
|
|
522
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
523
|
-
|
|
524
|
-
## [2.6.4](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.6.3...eslint-plugin-formatjs@2.6.4) (2020-08-17)
|
|
525
|
-
|
|
526
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
527
|
-
|
|
528
|
-
## [2.6.3](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.6.2...eslint-plugin-formatjs@2.6.3) (2020-08-14)
|
|
529
|
-
|
|
530
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
531
|
-
|
|
532
|
-
## [2.6.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.6.1...eslint-plugin-formatjs@2.6.2) (2020-08-14)
|
|
533
|
-
|
|
534
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
535
|
-
|
|
536
|
-
## [2.6.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.6.0...eslint-plugin-formatjs@2.6.1) (2020-08-13)
|
|
537
|
-
|
|
538
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
539
|
-
|
|
540
|
-
# [2.6.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.5.7...eslint-plugin-formatjs@2.6.0) (2020-08-10)
|
|
541
|
-
|
|
542
|
-
### Features
|
|
543
|
-
|
|
544
|
-
* **eslint-plugin-formatjs:** add enforce-id rule ([5205b68](https://github.com/formatjs/formatjs/commit/5205b680f5e72f7197aced538c775d6615858501)), closes [#1907](https://github.com/formatjs/formatjs/issues/1907)
|
|
545
|
-
|
|
546
|
-
## [2.5.7](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.5.6...eslint-plugin-formatjs@2.5.7) (2020-07-24)
|
|
547
|
-
|
|
548
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
549
|
-
|
|
550
|
-
## [2.5.6](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.5.5...eslint-plugin-formatjs@2.5.6) (2020-07-21)
|
|
551
|
-
|
|
552
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
553
|
-
|
|
554
|
-
## [2.5.5](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.5.4...eslint-plugin-formatjs@2.5.5) (2020-07-17)
|
|
555
|
-
|
|
556
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
557
|
-
|
|
558
|
-
## [2.5.4](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.5.3...eslint-plugin-formatjs@2.5.4) (2020-07-16)
|
|
559
|
-
|
|
560
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
561
|
-
|
|
562
|
-
## [2.5.3](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.5.1...eslint-plugin-formatjs@2.5.3) (2020-07-14)
|
|
563
|
-
|
|
564
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
565
|
-
|
|
566
|
-
## [2.5.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.5.1...eslint-plugin-formatjs@2.5.2) (2020-07-14)
|
|
567
|
-
|
|
568
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
569
|
-
|
|
570
|
-
## [2.5.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.5.0...eslint-plugin-formatjs@2.5.1) (2020-07-14)
|
|
571
|
-
|
|
572
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
573
|
-
|
|
574
|
-
# [2.5.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.21...eslint-plugin-formatjs@2.5.0) (2020-07-14)
|
|
575
|
-
|
|
576
|
-
### Bug Fixes
|
|
577
|
-
|
|
578
|
-
* **eslint-plugin-formatjs:** bump eslint peerDep to v7, fix [#1827](https://github.com/formatjs/formatjs/issues/1827) ([60056dc](https://github.com/formatjs/formatjs/commit/60056dc27b691f2407a49c2e34631f89cfb5d776))
|
|
579
|
-
|
|
580
|
-
### Features
|
|
581
|
-
|
|
582
|
-
* publish ([b6e3465](https://github.com/formatjs/formatjs/commit/b6e3465ac95b3fa481f3c89f077a66ac004f7c27))
|
|
583
|
-
* **eslint-plugin-formatjs:** remove references to @formatjs/macro ([831feed](https://github.com/formatjs/formatjs/commit/831feed1a5db0557038f2d5a246e808511775b84))
|
|
584
|
-
|
|
585
|
-
# [2.4.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.21...eslint-plugin-formatjs@2.4.0) (2020-07-09)
|
|
586
|
-
|
|
587
|
-
### Features
|
|
588
|
-
|
|
589
|
-
* **eslint-plugin-formatjs:** remove references to @formatjs/macro ([831feed](https://github.com/formatjs/formatjs/commit/831feed1a5db0557038f2d5a246e808511775b84))
|
|
590
|
-
|
|
591
|
-
## [2.3.21](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.20...eslint-plugin-formatjs@2.3.21) (2020-07-03)
|
|
592
|
-
|
|
593
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
594
|
-
|
|
595
|
-
## [2.3.20](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.19...eslint-plugin-formatjs@2.3.20) (2020-07-03)
|
|
596
|
-
|
|
597
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
598
|
-
|
|
599
|
-
## [2.3.19](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.18...eslint-plugin-formatjs@2.3.19) (2020-07-03)
|
|
600
|
-
|
|
601
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
602
|
-
|
|
603
|
-
## [2.3.18](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.17...eslint-plugin-formatjs@2.3.18) (2020-07-01)
|
|
604
|
-
|
|
605
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
606
|
-
|
|
607
|
-
## [2.3.17](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.16...eslint-plugin-formatjs@2.3.17) (2020-06-26)
|
|
608
|
-
|
|
609
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
610
|
-
|
|
611
|
-
## [2.3.16](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.15...eslint-plugin-formatjs@2.3.16) (2020-06-23)
|
|
612
|
-
|
|
613
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
614
|
-
|
|
615
|
-
## [2.3.15](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.14...eslint-plugin-formatjs@2.3.15) (2020-06-23)
|
|
616
|
-
|
|
617
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
618
|
-
|
|
619
|
-
## [2.3.14](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.13...eslint-plugin-formatjs@2.3.14) (2020-06-20)
|
|
620
|
-
|
|
621
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
622
|
-
|
|
623
|
-
## [2.3.13](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.12...eslint-plugin-formatjs@2.3.13) (2020-06-06)
|
|
624
|
-
|
|
625
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
626
|
-
|
|
627
|
-
## [2.3.12](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.11...eslint-plugin-formatjs@2.3.12) (2020-06-06)
|
|
628
|
-
|
|
629
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
630
|
-
|
|
631
|
-
## [2.3.11](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.10...eslint-plugin-formatjs@2.3.11) (2020-06-04)
|
|
632
|
-
|
|
633
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
634
|
-
|
|
635
|
-
## [2.3.10](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.9...eslint-plugin-formatjs@2.3.10) (2020-06-04)
|
|
636
|
-
|
|
637
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
638
|
-
|
|
639
|
-
## [2.3.9](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.8...eslint-plugin-formatjs@2.3.9) (2020-06-03)
|
|
640
|
-
|
|
641
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
642
|
-
|
|
643
|
-
## [2.3.8](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.7...eslint-plugin-formatjs@2.3.8) (2020-05-28)
|
|
644
|
-
|
|
645
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
646
|
-
|
|
647
|
-
## [2.3.7](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.6...eslint-plugin-formatjs@2.3.7) (2020-05-27)
|
|
648
|
-
|
|
649
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
650
|
-
|
|
651
|
-
## [2.3.6](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.5...eslint-plugin-formatjs@2.3.6) (2020-05-25)
|
|
652
|
-
|
|
653
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
654
|
-
|
|
655
|
-
## [2.3.5](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.4...eslint-plugin-formatjs@2.3.5) (2020-05-23)
|
|
656
|
-
|
|
657
|
-
- Extracted CLDR unit data has breaking schema change
|
|
658
|
-
|
|
659
|
-
## [2.3.4](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.3...eslint-plugin-formatjs@2.3.4) (2020-05-23)
|
|
660
|
-
|
|
661
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
662
|
-
|
|
663
|
-
## [2.3.3](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.2...eslint-plugin-formatjs@2.3.3) (2020-05-22)
|
|
664
|
-
|
|
665
|
-
### Bug Fixes
|
|
666
|
-
|
|
667
|
-
* **eslint-plugin-formatjs:** add no-id to index ([8e5c0af](https://github.com/formatjs/formatjs/commit/8e5c0afe69944d52653b92c2f08e15363246834a))
|
|
668
|
-
* **eslint-plugin-formatjs:** fix issue where highlight was not on message/description node ([0ab41a9](https://github.com/formatjs/formatjs/commit/0ab41a96b1d0d5ffb35e0f7f8e407d621417a3f2))
|
|
669
|
-
|
|
670
|
-
## [2.3.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.1...eslint-plugin-formatjs@2.3.2) (2020-05-21)
|
|
671
|
-
|
|
672
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
673
|
-
|
|
674
|
-
## [2.3.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.3.0...eslint-plugin-formatjs@2.3.1) (2020-05-21)
|
|
675
|
-
|
|
676
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
677
|
-
|
|
678
|
-
# [2.3.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.2.5...eslint-plugin-formatjs@2.3.0) (2020-05-16)
|
|
679
|
-
|
|
680
|
-
### Features
|
|
681
|
-
|
|
682
|
-
* **eslint-plugin-formatjs:** add rule for no-id ([d7d8159](https://github.com/formatjs/formatjs/commit/d7d81595e9154bf929cc0ea772acfe66719f6104))
|
|
683
|
-
|
|
684
|
-
## [2.2.5](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.2.4...eslint-plugin-formatjs@2.2.5) (2020-05-06)
|
|
685
|
-
|
|
686
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
687
|
-
|
|
688
|
-
## [2.2.4](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.2.3...eslint-plugin-formatjs@2.2.4) (2020-05-05)
|
|
689
|
-
|
|
690
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
691
|
-
|
|
692
|
-
## 2.2.3 (2020-04-28)
|
|
693
|
-
|
|
694
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
695
|
-
|
|
696
|
-
## [2.2.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.2.1...eslint-plugin-formatjs@2.2.2) (2020-04-25)
|
|
697
|
-
|
|
698
|
-
### Bug Fixes
|
|
699
|
-
|
|
700
|
-
* **eslint-plugin-formatjs:** rm hard dep on @typescript-eslint/typescript-estree, fix [#666](https://github.com/formatjs/formatjs/issues/666) ([ed40a8b](https://github.com/formatjs/formatjs/commit/ed40a8b366d370783fcf75e6c98dc6356a9aa03f))
|
|
701
|
-
|
|
702
|
-
## [2.2.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.2.0...eslint-plugin-formatjs@2.2.1) (2020-04-24)
|
|
703
|
-
|
|
704
|
-
### Bug Fixes
|
|
705
|
-
|
|
706
|
-
* **eslint-plugin-formatjs:** add missing dep ([776390e](https://github.com/formatjs/formatjs/commit/776390e9d6cb3bc1eef07b2e92057136cfe95b76))
|
|
707
|
-
|
|
708
|
-
# [2.2.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.1.5...eslint-plugin-formatjs@2.2.0) (2020-04-24)
|
|
709
|
-
|
|
710
|
-
### Bug Fixes
|
|
711
|
-
|
|
712
|
-
* **eslint-plugin-formatjs:** fix issues with spread element in ([68acfaf](https://github.com/formatjs/formatjs/commit/68acfafdf86907db26a59b447f31bed7d4724466))
|
|
713
|
-
|
|
714
|
-
### Features
|
|
715
|
-
|
|
716
|
-
* **eslint-plugin-formatjs:** Add `literal` option to `enforce-description` & `enforce-default-message` ([f20a2d4](https://github.com/formatjs/formatjs/commit/f20a2d4546d2c8cbffec5fa05792649488bbfda1))
|
|
717
|
-
|
|
718
|
-
## [2.1.5](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.1.4...eslint-plugin-formatjs@2.1.5) (2020-04-20)
|
|
719
|
-
|
|
720
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
721
|
-
|
|
722
|
-
## [2.1.4](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.1.3...eslint-plugin-formatjs@2.1.4) (2020-04-14)
|
|
723
|
-
|
|
724
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
725
|
-
|
|
726
|
-
## [2.1.3](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.1.2...eslint-plugin-formatjs@2.1.3) (2020-04-12)
|
|
727
|
-
|
|
728
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
729
|
-
|
|
730
|
-
## [2.1.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.1.1...eslint-plugin-formatjs@2.1.2) (2020-04-11)
|
|
731
|
-
|
|
732
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
733
|
-
|
|
734
|
-
## [2.1.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.1.0...eslint-plugin-formatjs@2.1.1) (2020-03-30)
|
|
735
|
-
|
|
736
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
737
|
-
|
|
738
|
-
# [2.1.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.0.2...eslint-plugin-formatjs@2.1.0) (2020-03-29)
|
|
739
|
-
|
|
740
|
-
### Features
|
|
741
|
-
|
|
742
|
-
* **eslint-plugin-formatjs:** add no-multiple-whitespaces rule ([27222ab](https://github.com/formatjs/formatjs/commit/27222ab58d15511f67fb058ab2c045889682742f))
|
|
743
|
-
|
|
744
|
-
## [2.0.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.0.1...eslint-plugin-formatjs@2.0.2) (2020-03-18)
|
|
745
|
-
|
|
746
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
747
|
-
|
|
748
|
-
## [2.0.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@2.0.0...eslint-plugin-formatjs@2.0.1) (2020-03-05)
|
|
749
|
-
|
|
750
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
751
|
-
|
|
752
|
-
# [2.0.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.6.0...eslint-plugin-formatjs@2.0.0) (2020-03-04)
|
|
753
|
-
|
|
754
|
-
### Features
|
|
755
|
-
|
|
756
|
-
* **intl-messageformat-parser:** Add native support for parsing XML tag ([51c49fa](https://github.com/formatjs/formatjs/commit/51c49faa46880ae6e005125c59fa23b59f0e7083))
|
|
757
|
-
|
|
758
|
-
### BREAKING CHANGES
|
|
759
|
-
|
|
760
|
-
* **intl-messageformat-parser:** This changes the AST and causes potential conflicts
|
|
761
|
-
with previous parser version
|
|
762
|
-
fix(eslint-plugin-formatjs): Adapt to new parser
|
|
763
|
-
chore(babel-plugin-react-intl): update package lock
|
|
764
|
-
|
|
765
|
-
# [1.6.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.5.11...eslint-plugin-formatjs@1.6.0) (2020-03-01)
|
|
766
|
-
|
|
767
|
-
### Features
|
|
768
|
-
|
|
769
|
-
* **eslint-plugin-formatjs:** add support for defaultMessage ([#524](https://github.com/formatjs/formatjs/issues/524)) ([63742d6](https://github.com/formatjs/formatjs/commit/63742d697732f2e88176c8f310f89bf65c2f9576))
|
|
770
|
-
|
|
771
|
-
## [1.5.11](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.5.10...eslint-plugin-formatjs@1.5.11) (2020-01-27)
|
|
772
|
-
|
|
773
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
774
|
-
|
|
775
|
-
## [1.5.10](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.5.9...eslint-plugin-formatjs@1.5.10) (2020-01-22)
|
|
776
|
-
|
|
777
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
778
|
-
|
|
779
|
-
## [1.5.9](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.5.8...eslint-plugin-formatjs@1.5.9) (2020-01-09)
|
|
780
|
-
|
|
781
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
782
|
-
|
|
783
|
-
## [1.5.8](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.5.7...eslint-plugin-formatjs@1.5.8) (2020-01-08)
|
|
784
|
-
|
|
785
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
786
|
-
|
|
787
|
-
## [1.5.7](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.5.6...eslint-plugin-formatjs@1.5.7) (2020-01-06)
|
|
788
|
-
|
|
789
|
-
### Bug Fixes
|
|
790
|
-
|
|
791
|
-
* **eslint-plugin-format:** fix eslint-plugin-formatjs type error ([b647552](https://github.com/formatjs/formatjs/commit/b6475523bf816e2ac3be6c03d0b565fccb2b5c29))
|
|
792
|
-
|
|
793
|
-
## [1.5.6](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.5.5...eslint-plugin-formatjs@1.5.6) (2019-12-27)
|
|
794
|
-
|
|
795
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
796
|
-
|
|
797
|
-
## [1.5.5](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.5.4...eslint-plugin-formatjs@1.5.5) (2019-12-26)
|
|
798
|
-
|
|
799
|
-
### Bug Fixes
|
|
800
|
-
|
|
801
|
-
* **eslint-plugin-formatjs:** ignore msg decl for enforce-placeholders, fix [#356](https://github.com/formatjs/formatjs/issues/356) ([91915b8](https://github.com/formatjs/formatjs/commit/91915b84eb9c37e069c6b457f4a7249908d58a56))
|
|
802
|
-
|
|
803
|
-
## [1.5.4](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.5.3...eslint-plugin-formatjs@1.5.4) (2019-12-04)
|
|
804
|
-
|
|
805
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
806
|
-
|
|
807
|
-
## [1.5.3](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.5.2...eslint-plugin-formatjs@1.5.3) (2019-12-02)
|
|
808
|
-
|
|
809
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
810
|
-
|
|
811
|
-
## [1.5.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.5.1...eslint-plugin-formatjs@1.5.2) (2019-12-01)
|
|
812
|
-
|
|
813
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
814
|
-
|
|
815
|
-
## [1.5.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.5.0...eslint-plugin-formatjs@1.5.1) (2019-11-26)
|
|
816
|
-
|
|
817
|
-
### Bug Fixes
|
|
818
|
-
|
|
819
|
-
* **eslint-plugin-formatjs:** handle non-literal value in descriptor ([b74e0f6](https://github.com/formatjs/formatjs/commit/b74e0f63a022e1bff505df3dd2d8165c9c7ba8fc)), closes [#304](https://github.com/formatjs/formatjs/issues/304)
|
|
820
|
-
|
|
821
|
-
# [1.5.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.4.3...eslint-plugin-formatjs@1.5.0) (2019-11-25)
|
|
822
|
-
|
|
823
|
-
### Bug Fixes
|
|
824
|
-
|
|
825
|
-
* **intl-messageformat-parser:** exclude some more unsupported pattern ([07ec1d1](https://github.com/formatjs/formatjs/commit/07ec1d119169879617f17c542d6992c31ec85856))
|
|
826
|
-
|
|
827
|
-
### Features
|
|
828
|
-
|
|
829
|
-
* **eslint-plugin-formatjs:** add supported-datetime-skeleton rules ([c121a9a](https://github.com/formatjs/formatjs/commit/c121a9a9a52f21fbe1fdfc70e31c0275efbd0f8d))
|
|
830
|
-
|
|
831
|
-
## [1.4.3](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.4.2...eslint-plugin-formatjs@1.4.3) (2019-11-25)
|
|
832
|
-
|
|
833
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
834
|
-
|
|
835
|
-
## [1.4.2](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.4.1...eslint-plugin-formatjs@1.4.2) (2019-11-23)
|
|
836
|
-
|
|
837
|
-
### Bug Fixes
|
|
838
|
-
|
|
839
|
-
* **eslint-plugin-formatjs:** handle spread attributes in JSX, fix [#292](https://github.com/formatjs/formatjs/issues/292) ([c7e0f6c](https://github.com/formatjs/formatjs/commit/c7e0f6c09fe78688c919c1654a6474f227aa29e9))
|
|
840
|
-
|
|
841
|
-
## [1.4.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.4.0...eslint-plugin-formatjs@1.4.1) (2019-11-21)
|
|
842
|
-
|
|
843
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
844
|
-
|
|
845
|
-
# [1.4.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.3.1...eslint-plugin-formatjs@1.4.0) (2019-11-20)
|
|
846
|
-
|
|
847
|
-
### Features
|
|
848
|
-
|
|
849
|
-
* **eslint-plugin-formatjs:** report when message is invalid ICU ([916d063](https://github.com/formatjs/formatjs/commit/916d06361d6bb30f728fd6e948cf0ae724ba635f))
|
|
850
|
-
|
|
851
|
-
## [1.3.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.3.0...eslint-plugin-formatjs@1.3.1) (2019-11-10)
|
|
852
|
-
|
|
853
|
-
### Bug Fixes
|
|
854
|
-
|
|
855
|
-
* **intl-messageformat:** pass raw locales down to individual formatters ([3a74c2e](https://github.com/formatjs/formatjs/commit/3a74c2e7c6592de3a4f5ca182c5846fe095abe55)), closes [#255](https://github.com/formatjs/formatjs/issues/255)
|
|
856
|
-
|
|
857
|
-
# [1.3.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.2.0...eslint-plugin-formatjs@1.3.0) (2019-11-07)
|
|
858
|
-
|
|
859
|
-
### Features
|
|
860
|
-
|
|
861
|
-
* **eslint-plugin-formatjs:** Add enforce-placeholders rule ([12b9ac1](https://github.com/formatjs/formatjs/commit/12b9ac11a5fb1da4308cf4b6abeb6e8b6adce59f))
|
|
862
|
-
|
|
863
|
-
# [1.2.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.1.1...eslint-plugin-formatjs@1.2.0) (2019-10-31)
|
|
864
|
-
|
|
865
|
-
### Features
|
|
866
|
-
|
|
867
|
-
* **eslint-plugin-formatjs:** add enforce-plural-rules rule ([b6765a6](https://github.com/formatjs/formatjs/commit/b6765a6533b6a749abf79aff2d5801a8d8ad9b22))
|
|
868
|
-
* **eslint-plugin-formatjs:** Also check `intl.formatMessage` calls ([d036de7](https://github.com/formatjs/formatjs/commit/d036de71721e4cf22d6149bde3d7c8006a1497b0))
|
|
869
|
-
|
|
870
|
-
## [1.1.1](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.1.0...eslint-plugin-formatjs@1.1.1) (2019-10-30)
|
|
871
|
-
|
|
872
|
-
### Bug Fixes
|
|
873
|
-
|
|
874
|
-
* **eslint-plugin-formatjs:** Fix selectordinal check in blacklist-elements ([2149789](https://github.com/formatjs/formatjs/commit/2149789d18f2dc65ae362d9fc9f52e17f44fd682))
|
|
875
|
-
|
|
876
|
-
# [1.1.0](https://github.com/formatjs/formatjs/compare/eslint-plugin-formatjs@1.0.2...eslint-plugin-formatjs@1.1.0) (2019-10-30)
|
|
877
|
-
|
|
878
|
-
### Bug Fixes
|
|
879
|
-
|
|
880
|
-
* **@formatjs/macro:** fix tsconfig build to output the correct dir ([825d2cb](https://github.com/formatjs/formatjs/commit/825d2cb035b76276be259fbff08e0bf456203207))
|
|
881
|
-
|
|
882
|
-
### Features
|
|
883
|
-
|
|
884
|
-
* **eslint-plugin-formatjs:** Add support for FormattedMessage ([2df544e](https://github.com/formatjs/formatjs/commit/2df544e6b56d314460204f3f6f11003b57eda47e))
|
|
885
|
-
|
|
886
|
-
## 1.0.2 (2019-10-30)
|
|
887
|
-
|
|
888
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|
|
889
|
-
|
|
890
|
-
## 1.0.1 (2019-10-30)
|
|
891
|
-
|
|
892
|
-
**Note:** Version bump only for package eslint-plugin-formatjs
|