eslint-plugin-formatjs 4.0.0 → 4.0.1
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 +1 -0
- package/index.d.ts.map +1 -1
- package/index.js +2 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ declare const plugin: {
|
|
|
10
10
|
'no-complex-selectors': import("eslint").Rule.RuleModule;
|
|
11
11
|
'no-emoji': import("eslint").Rule.RuleModule;
|
|
12
12
|
'no-id': import("eslint").Rule.RuleModule;
|
|
13
|
+
'no-literal-string-in-jsx': import("eslint").Rule.RuleModule;
|
|
13
14
|
'no-multiple-plurals': import("eslint").Rule.RuleModule;
|
|
14
15
|
'no-multiple-whitespaces': import("eslint").Rule.RuleModule;
|
|
15
16
|
'no-offset': import("eslint").Rule.RuleModule;
|
package/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../packages/eslint-plugin-formatjs/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../packages/eslint-plugin-formatjs/index.ts"],"names":[],"mappings":"AAcA,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;CAiBX,CAAA;AAED,oBAAY,MAAM,GAAG,OAAO,MAAM,CAAA"}
|
package/index.js
CHANGED
|
@@ -14,6 +14,7 @@ var no_id_1 = (0, tslib_1.__importDefault)(require("./rules/no-id"));
|
|
|
14
14
|
var no_multiple_plurals_1 = (0, tslib_1.__importDefault)(require("./rules/no-multiple-plurals"));
|
|
15
15
|
var no_multiple_whitespaces_1 = (0, tslib_1.__importDefault)(require("./rules/no-multiple-whitespaces"));
|
|
16
16
|
var no_offset_1 = (0, tslib_1.__importDefault)(require("./rules/no-offset"));
|
|
17
|
+
var no_literal_string_in_jsx_1 = (0, tslib_1.__importDefault)(require("./rules/no-literal-string-in-jsx"));
|
|
17
18
|
var plugin = {
|
|
18
19
|
rules: {
|
|
19
20
|
'blocklist-elements': blocklist_elements_1.default,
|
|
@@ -26,6 +27,7 @@ var plugin = {
|
|
|
26
27
|
'no-complex-selectors': no_complex_selectors_1.default,
|
|
27
28
|
'no-emoji': no_emoji_1.default,
|
|
28
29
|
'no-id': no_id_1.default,
|
|
30
|
+
'no-literal-string-in-jsx': no_literal_string_in_jsx_1.default,
|
|
29
31
|
'no-multiple-plurals': no_multiple_plurals_1.default,
|
|
30
32
|
'no-multiple-whitespaces': no_multiple_whitespaces_1.default,
|
|
31
33
|
'no-offset': no_offset_1.default,
|