@arrirpc/eslint-plugin 0.70.0 → 0.71.0
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/dist/configs.d.cts +4 -4
- package/dist/configs.d.mts +4 -4
- package/dist/configs.d.ts +4 -4
- package/dist/plugin.d.cts +10 -10
- package/dist/plugin.d.mts +10 -10
- package/dist/plugin.d.ts +10 -10
- package/package.json +1 -1
package/dist/configs.d.cts
CHANGED
|
@@ -11,10 +11,10 @@ declare const flatConfigs: {
|
|
|
11
11
|
};
|
|
12
12
|
configs: Record<string, Linter.LegacyConfig<Linter.RulesRecord, Linter.RulesRecord> | Linter.Config<Linter.RulesRecord> | Linter.Config<Linter.RulesRecord>[]>;
|
|
13
13
|
rules: {
|
|
14
|
-
readonly
|
|
15
|
-
readonly
|
|
16
|
-
readonly
|
|
17
|
-
readonly
|
|
14
|
+
readonly 'no-anonymous-discriminator': eslint.Rule.RuleModule;
|
|
15
|
+
readonly 'no-anonymous-enumerator': eslint.Rule.RuleModule;
|
|
16
|
+
readonly 'no-anonymous-object': eslint.Rule.RuleModule;
|
|
17
|
+
readonly 'no-anonymous-recursive': eslint.Rule.RuleModule;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
};
|
package/dist/configs.d.mts
CHANGED
|
@@ -11,10 +11,10 @@ declare const flatConfigs: {
|
|
|
11
11
|
};
|
|
12
12
|
configs: Record<string, Linter.LegacyConfig<Linter.RulesRecord, Linter.RulesRecord> | Linter.Config<Linter.RulesRecord> | Linter.Config<Linter.RulesRecord>[]>;
|
|
13
13
|
rules: {
|
|
14
|
-
readonly
|
|
15
|
-
readonly
|
|
16
|
-
readonly
|
|
17
|
-
readonly
|
|
14
|
+
readonly 'no-anonymous-discriminator': eslint.Rule.RuleModule;
|
|
15
|
+
readonly 'no-anonymous-enumerator': eslint.Rule.RuleModule;
|
|
16
|
+
readonly 'no-anonymous-object': eslint.Rule.RuleModule;
|
|
17
|
+
readonly 'no-anonymous-recursive': eslint.Rule.RuleModule;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
};
|
package/dist/configs.d.ts
CHANGED
|
@@ -11,10 +11,10 @@ declare const flatConfigs: {
|
|
|
11
11
|
};
|
|
12
12
|
configs: Record<string, Linter.LegacyConfig<Linter.RulesRecord, Linter.RulesRecord> | Linter.Config<Linter.RulesRecord> | Linter.Config<Linter.RulesRecord>[]>;
|
|
13
13
|
rules: {
|
|
14
|
-
readonly
|
|
15
|
-
readonly
|
|
16
|
-
readonly
|
|
17
|
-
readonly
|
|
14
|
+
readonly 'no-anonymous-discriminator': eslint.Rule.RuleModule;
|
|
15
|
+
readonly 'no-anonymous-enumerator': eslint.Rule.RuleModule;
|
|
16
|
+
readonly 'no-anonymous-object': eslint.Rule.RuleModule;
|
|
17
|
+
readonly 'no-anonymous-recursive': eslint.Rule.RuleModule;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
};
|
package/dist/plugin.d.cts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import * as eslint from 'eslint';
|
|
2
2
|
import { ESLint } from 'eslint';
|
|
3
3
|
|
|
4
|
-
declare const meta: ESLint.Plugin[
|
|
5
|
-
declare const configs: ESLint.Plugin[
|
|
4
|
+
declare const meta: ESLint.Plugin['meta'];
|
|
5
|
+
declare const configs: ESLint.Plugin['configs'];
|
|
6
6
|
declare const rules: {
|
|
7
|
-
readonly
|
|
8
|
-
readonly
|
|
9
|
-
readonly
|
|
10
|
-
readonly
|
|
7
|
+
readonly 'no-anonymous-discriminator': eslint.Rule.RuleModule;
|
|
8
|
+
readonly 'no-anonymous-enumerator': eslint.Rule.RuleModule;
|
|
9
|
+
readonly 'no-anonymous-object': eslint.Rule.RuleModule;
|
|
10
|
+
readonly 'no-anonymous-recursive': eslint.Rule.RuleModule;
|
|
11
11
|
};
|
|
12
12
|
declare const _default: {
|
|
13
13
|
meta: {
|
|
@@ -16,10 +16,10 @@ declare const _default: {
|
|
|
16
16
|
};
|
|
17
17
|
configs: Record<string, eslint.Linter.LegacyConfig<eslint.Linter.RulesRecord, eslint.Linter.RulesRecord> | eslint.Linter.Config<eslint.Linter.RulesRecord> | eslint.Linter.Config<eslint.Linter.RulesRecord>[]>;
|
|
18
18
|
rules: {
|
|
19
|
-
readonly
|
|
20
|
-
readonly
|
|
21
|
-
readonly
|
|
22
|
-
readonly
|
|
19
|
+
readonly 'no-anonymous-discriminator': eslint.Rule.RuleModule;
|
|
20
|
+
readonly 'no-anonymous-enumerator': eslint.Rule.RuleModule;
|
|
21
|
+
readonly 'no-anonymous-object': eslint.Rule.RuleModule;
|
|
22
|
+
readonly 'no-anonymous-recursive': eslint.Rule.RuleModule;
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
25
|
|
package/dist/plugin.d.mts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import * as eslint from 'eslint';
|
|
2
2
|
import { ESLint } from 'eslint';
|
|
3
3
|
|
|
4
|
-
declare const meta: ESLint.Plugin[
|
|
5
|
-
declare const configs: ESLint.Plugin[
|
|
4
|
+
declare const meta: ESLint.Plugin['meta'];
|
|
5
|
+
declare const configs: ESLint.Plugin['configs'];
|
|
6
6
|
declare const rules: {
|
|
7
|
-
readonly
|
|
8
|
-
readonly
|
|
9
|
-
readonly
|
|
10
|
-
readonly
|
|
7
|
+
readonly 'no-anonymous-discriminator': eslint.Rule.RuleModule;
|
|
8
|
+
readonly 'no-anonymous-enumerator': eslint.Rule.RuleModule;
|
|
9
|
+
readonly 'no-anonymous-object': eslint.Rule.RuleModule;
|
|
10
|
+
readonly 'no-anonymous-recursive': eslint.Rule.RuleModule;
|
|
11
11
|
};
|
|
12
12
|
declare const _default: {
|
|
13
13
|
meta: {
|
|
@@ -16,10 +16,10 @@ declare const _default: {
|
|
|
16
16
|
};
|
|
17
17
|
configs: Record<string, eslint.Linter.LegacyConfig<eslint.Linter.RulesRecord, eslint.Linter.RulesRecord> | eslint.Linter.Config<eslint.Linter.RulesRecord> | eslint.Linter.Config<eslint.Linter.RulesRecord>[]>;
|
|
18
18
|
rules: {
|
|
19
|
-
readonly
|
|
20
|
-
readonly
|
|
21
|
-
readonly
|
|
22
|
-
readonly
|
|
19
|
+
readonly 'no-anonymous-discriminator': eslint.Rule.RuleModule;
|
|
20
|
+
readonly 'no-anonymous-enumerator': eslint.Rule.RuleModule;
|
|
21
|
+
readonly 'no-anonymous-object': eslint.Rule.RuleModule;
|
|
22
|
+
readonly 'no-anonymous-recursive': eslint.Rule.RuleModule;
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
25
|
|
package/dist/plugin.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import * as eslint from 'eslint';
|
|
2
2
|
import { ESLint } from 'eslint';
|
|
3
3
|
|
|
4
|
-
declare const meta: ESLint.Plugin[
|
|
5
|
-
declare const configs: ESLint.Plugin[
|
|
4
|
+
declare const meta: ESLint.Plugin['meta'];
|
|
5
|
+
declare const configs: ESLint.Plugin['configs'];
|
|
6
6
|
declare const rules: {
|
|
7
|
-
readonly
|
|
8
|
-
readonly
|
|
9
|
-
readonly
|
|
10
|
-
readonly
|
|
7
|
+
readonly 'no-anonymous-discriminator': eslint.Rule.RuleModule;
|
|
8
|
+
readonly 'no-anonymous-enumerator': eslint.Rule.RuleModule;
|
|
9
|
+
readonly 'no-anonymous-object': eslint.Rule.RuleModule;
|
|
10
|
+
readonly 'no-anonymous-recursive': eslint.Rule.RuleModule;
|
|
11
11
|
};
|
|
12
12
|
declare const _default: {
|
|
13
13
|
meta: {
|
|
@@ -16,10 +16,10 @@ declare const _default: {
|
|
|
16
16
|
};
|
|
17
17
|
configs: Record<string, eslint.Linter.LegacyConfig<eslint.Linter.RulesRecord, eslint.Linter.RulesRecord> | eslint.Linter.Config<eslint.Linter.RulesRecord> | eslint.Linter.Config<eslint.Linter.RulesRecord>[]>;
|
|
18
18
|
rules: {
|
|
19
|
-
readonly
|
|
20
|
-
readonly
|
|
21
|
-
readonly
|
|
22
|
-
readonly
|
|
19
|
+
readonly 'no-anonymous-discriminator': eslint.Rule.RuleModule;
|
|
20
|
+
readonly 'no-anonymous-enumerator': eslint.Rule.RuleModule;
|
|
21
|
+
readonly 'no-anonymous-object': eslint.Rule.RuleModule;
|
|
22
|
+
readonly 'no-anonymous-recursive': eslint.Rule.RuleModule;
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
25
|
|