eslint-plugin-markdown-preferences 0.20.0 → 0.22.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/README.md +37 -30
- package/lib/index.d.ts +60 -1
- package/lib/index.js +1565 -204
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -68,6 +68,7 @@ export default [
|
|
|
68
68
|
This plugin provides configs:
|
|
69
69
|
|
|
70
70
|
- `*.configs.recommended` ... Recommended config provided by the plugin.
|
|
71
|
+
- `*.configs.standard` ... Enforces opinionated stylistic conventions. You can extend this to enforce any stylistic conventions you like.
|
|
71
72
|
|
|
72
73
|
See [the rule list](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/) to get the `rules` that this plugin provides.
|
|
73
74
|
|
|
@@ -84,7 +85,8 @@ Is not supported.
|
|
|
84
85
|
<!--RULES_SECTION_START-->
|
|
85
86
|
|
|
86
87
|
The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) automatically fixes problems reported by rules which have a wrench 🔧 below.\
|
|
87
|
-
The rules with the following
|
|
88
|
+
The rules with the following ⭐ are included in the `recommended` config.\
|
|
89
|
+
The rules with the following 💄 are included in the `standard` config.
|
|
88
90
|
|
|
89
91
|
<!--RULES_TABLE_START-->
|
|
90
92
|
|
|
@@ -94,12 +96,12 @@ The rules with the following star ⭐ are included in the configs.
|
|
|
94
96
|
|
|
95
97
|
<!-- prettier-ignore-start -->
|
|
96
98
|
|
|
97
|
-
| Rule ID | Description | Fixable |
|
|
99
|
+
| Rule ID | Description | Fixable | Config |
|
|
98
100
|
|:--------|:------------|:-------:|:-----------:|
|
|
99
101
|
| [markdown-preferences/canonical-code-block-language](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/canonical-code-block-language.html) | enforce canonical language names in code blocks | 🔧 | |
|
|
100
102
|
| [markdown-preferences/emoji-notation](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/emoji-notation.html) | enforce consistent emoji notation style in Markdown files. | 🔧 | |
|
|
101
103
|
| [markdown-preferences/heading-casing](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/heading-casing.html) | enforce consistent casing in headings. | 🔧 | |
|
|
102
|
-
| [markdown-preferences/ordered-list-marker-start](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/ordered-list-marker-start.html) | enforce that ordered list markers start with 1 or 0 | 🔧 |
|
|
104
|
+
| [markdown-preferences/ordered-list-marker-start](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/ordered-list-marker-start.html) | enforce that ordered list markers start with 1 or 0 | 🔧 | 💄 |
|
|
103
105
|
| [markdown-preferences/prefer-inline-code-words](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/prefer-inline-code-words.html) | enforce the use of inline code for specific words. | 🔧 | |
|
|
104
106
|
| [markdown-preferences/prefer-linked-words](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/prefer-linked-words.html) | enforce the specified word to be a link. | 🔧 | |
|
|
105
107
|
| [markdown-preferences/table-header-casing](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/table-header-casing.html) | enforce consistent casing in table header cells. | 🔧 | |
|
|
@@ -112,36 +114,41 @@ The rules with the following star ⭐ are included in the configs.
|
|
|
112
114
|
|
|
113
115
|
<!-- prettier-ignore-start -->
|
|
114
116
|
|
|
115
|
-
| Rule ID | Description | Fixable |
|
|
117
|
+
| Rule ID | Description | Fixable | Config |
|
|
116
118
|
|:--------|:------------|:-------:|:-----------:|
|
|
117
|
-
| [markdown-preferences/atx-heading-closing-sequence-length](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/atx-heading-closing-sequence-length.html) | enforce consistent length for the closing sequence (trailing #s) in ATX headings. | 🔧 |
|
|
118
|
-
| [markdown-preferences/atx-heading-closing-sequence](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/atx-heading-closing-sequence.html) | enforce consistent use of closing sequence in ATX headings. | 🔧 |
|
|
119
|
-
| [markdown-preferences/blockquote-marker-alignment](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/blockquote-marker-alignment.html) | enforce consistent alignment of blockquote markers | 🔧 |
|
|
120
|
-
| [markdown-preferences/bullet-list-marker-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/bullet-list-marker-style.html) | enforce consistent bullet list (unordered list) marker style | 🔧 |
|
|
121
|
-
| [markdown-preferences/code-fence-length](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/code-fence-length.html) | enforce consistent code fence length in fenced code blocks. | 🔧 |
|
|
122
|
-
| [markdown-preferences/code-fence-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/code-fence-style.html) | enforce a consistent code fence style (backtick or tilde) in Markdown fenced code blocks. | 🔧 |
|
|
119
|
+
| [markdown-preferences/atx-heading-closing-sequence-length](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/atx-heading-closing-sequence-length.html) | enforce consistent length for the closing sequence (trailing #s) in ATX headings. | 🔧 | 💄 |
|
|
120
|
+
| [markdown-preferences/atx-heading-closing-sequence](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/atx-heading-closing-sequence.html) | enforce consistent use of closing sequence in ATX headings. | 🔧 | 💄 |
|
|
121
|
+
| [markdown-preferences/blockquote-marker-alignment](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/blockquote-marker-alignment.html) | enforce consistent alignment of blockquote markers | 🔧 | ⭐💄 |
|
|
122
|
+
| [markdown-preferences/bullet-list-marker-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/bullet-list-marker-style.html) | enforce consistent bullet list (unordered list) marker style | 🔧 | 💄 |
|
|
123
|
+
| [markdown-preferences/code-fence-length](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/code-fence-length.html) | enforce consistent code fence length in fenced code blocks. | 🔧 | 💄 |
|
|
124
|
+
| [markdown-preferences/code-fence-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/code-fence-style.html) | enforce a consistent code fence style (backtick or tilde) in Markdown fenced code blocks. | 🔧 | 💄 |
|
|
123
125
|
| [markdown-preferences/definitions-last](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/definitions-last.html) | require link definitions and footnote definitions to be placed at the end of the document | 🔧 | |
|
|
124
|
-
| [markdown-preferences/emphasis-delimiters-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/emphasis-delimiters-style.html) | enforce a consistent delimiter style for emphasis and strong emphasis | 🔧 |
|
|
125
|
-
| [markdown-preferences/hard-linebreak-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/hard-linebreak-style.html) | enforce consistent hard linebreak style. | 🔧 |
|
|
126
|
-
| [markdown-preferences/level1-heading-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/level1-heading-style.html) | enforce consistent style for level 1 headings | 🔧 |
|
|
127
|
-
| [markdown-preferences/level2-heading-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/level2-heading-style.html) | enforce consistent style for level 2 headings | 🔧 |
|
|
128
|
-
| [markdown-preferences/
|
|
129
|
-
| [markdown-preferences/
|
|
130
|
-
| [markdown-preferences/
|
|
131
|
-
| [markdown-preferences/
|
|
132
|
-
| [markdown-preferences/
|
|
133
|
-
| [markdown-preferences/
|
|
134
|
-
| [markdown-preferences/
|
|
135
|
-
| [markdown-preferences/
|
|
136
|
-
| [markdown-preferences/
|
|
137
|
-
| [markdown-preferences/
|
|
126
|
+
| [markdown-preferences/emphasis-delimiters-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/emphasis-delimiters-style.html) | enforce a consistent delimiter style for emphasis and strong emphasis | 🔧 | 💄 |
|
|
127
|
+
| [markdown-preferences/hard-linebreak-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/hard-linebreak-style.html) | enforce consistent hard linebreak style. | 🔧 | ⭐💄 |
|
|
128
|
+
| [markdown-preferences/level1-heading-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/level1-heading-style.html) | enforce consistent style for level 1 headings | 🔧 | 💄 |
|
|
129
|
+
| [markdown-preferences/level2-heading-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/level2-heading-style.html) | enforce consistent style for level 2 headings | 🔧 | 💄 |
|
|
130
|
+
| [markdown-preferences/link-bracket-newline](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/link-bracket-newline.html) | enforce linebreaks after opening and before closing link brackets | 🔧 | 💄 |
|
|
131
|
+
| [markdown-preferences/link-bracket-spacing](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/link-bracket-spacing.html) | enforce consistent spacing inside link brackets | 🔧 | 💄 |
|
|
132
|
+
| [markdown-preferences/link-destination-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/link-destination-style.html) | enforce a consistent style for link destinations | 🔧 | 💄 |
|
|
133
|
+
| [markdown-preferences/link-title-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/link-title-style.html) | enforce a consistent style for link titles | 🔧 | 💄 |
|
|
134
|
+
| [markdown-preferences/list-marker-alignment](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/list-marker-alignment.html) | enforce consistent alignment of list markers | 🔧 | ⭐💄 |
|
|
135
|
+
| [markdown-preferences/no-laziness-blockquotes](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/no-laziness-blockquotes.html) | disallow laziness in blockquotes | | ⭐💄 |
|
|
136
|
+
| [markdown-preferences/no-multi-spaces](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/no-multi-spaces.html) | disallow multiple spaces | 🔧 | 💄 |
|
|
137
|
+
| [markdown-preferences/no-multiple-empty-lines](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/no-multiple-empty-lines.html) | disallow multiple empty lines in Markdown files. | 🔧 | 💄 |
|
|
138
|
+
| [markdown-preferences/no-text-backslash-linebreak](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/no-text-backslash-linebreak.html) | disallow text backslash at the end of a line. | | ⭐💄 |
|
|
139
|
+
| [markdown-preferences/no-trailing-spaces](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/no-trailing-spaces.html) | disallow trailing whitespace at the end of lines in Markdown files. | 🔧 | 💄 |
|
|
140
|
+
| [markdown-preferences/ordered-list-marker-sequence](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/ordered-list-marker-sequence.html) | enforce that ordered list markers use sequential numbers | 🔧 | 💄 |
|
|
141
|
+
| [markdown-preferences/ordered-list-marker-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/ordered-list-marker-style.html) | enforce consistent ordered list marker style | 🔧 | 💄 |
|
|
142
|
+
| [markdown-preferences/padding-line-between-blocks](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/padding-line-between-blocks.html) | require or disallow padding lines between blocks | 🔧 | 💄 |
|
|
143
|
+
| [markdown-preferences/prefer-autolinks](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/prefer-autolinks.html) | enforce the use of autolinks for URLs | 🔧 | ⭐💄 |
|
|
144
|
+
| [markdown-preferences/prefer-fenced-code-blocks](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/prefer-fenced-code-blocks.html) | enforce the use of fenced code blocks over indented code blocks | 🔧 | ⭐💄 |
|
|
138
145
|
| [markdown-preferences/prefer-link-reference-definitions](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/prefer-link-reference-definitions.html) | enforce using link reference definitions instead of inline links | 🔧 | |
|
|
139
|
-
| [markdown-preferences/setext-heading-underline-length](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/setext-heading-underline-length.html) | enforce setext heading underline length | 🔧 |
|
|
140
|
-
| [markdown-preferences/sort-definitions](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/sort-definitions.html) | enforce a specific order for link definitions and footnote definitions | 🔧 |
|
|
141
|
-
| [markdown-preferences/strikethrough-delimiters-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/strikethrough-delimiters-style.html) | enforce a consistent delimiter style for strikethrough | 🔧 |
|
|
142
|
-
| [markdown-preferences/thematic-break-character-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/thematic-break-character-style.html) | enforce consistent character style for thematic breaks (horizontal rules) in Markdown. | 🔧 |
|
|
143
|
-
| [markdown-preferences/thematic-break-length](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/thematic-break-length.html) | enforce consistent length for thematic breaks (horizontal rules) in Markdown. | 🔧 |
|
|
144
|
-
| [markdown-preferences/thematic-break-sequence-pattern](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/thematic-break-sequence-pattern.html) | enforce consistent repeating patterns for thematic breaks (horizontal rules) in Markdown. | 🔧 |
|
|
146
|
+
| [markdown-preferences/setext-heading-underline-length](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/setext-heading-underline-length.html) | enforce setext heading underline length | 🔧 | 💄 |
|
|
147
|
+
| [markdown-preferences/sort-definitions](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/sort-definitions.html) | enforce a specific order for link definitions and footnote definitions | 🔧 | 💄 |
|
|
148
|
+
| [markdown-preferences/strikethrough-delimiters-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/strikethrough-delimiters-style.html) | enforce a consistent delimiter style for strikethrough | 🔧 | 💄 |
|
|
149
|
+
| [markdown-preferences/thematic-break-character-style](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/thematic-break-character-style.html) | enforce consistent character style for thematic breaks (horizontal rules) in Markdown. | 🔧 | 💄 |
|
|
150
|
+
| [markdown-preferences/thematic-break-length](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/thematic-break-length.html) | enforce consistent length for thematic breaks (horizontal rules) in Markdown. | 🔧 | 💄 |
|
|
151
|
+
| [markdown-preferences/thematic-break-sequence-pattern](https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/thematic-break-sequence-pattern.html) | enforce consistent repeating patterns for thematic breaks (horizontal rules) in Markdown. | 🔧 | 💄 |
|
|
145
152
|
|
|
146
153
|
<!-- prettier-ignore-end -->
|
|
147
154
|
|
package/lib/index.d.ts
CHANGED
|
@@ -80,6 +80,26 @@ interface RuleOptions {
|
|
|
80
80
|
* @see https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/level2-heading-style.html
|
|
81
81
|
*/
|
|
82
82
|
'markdown-preferences/level2-heading-style'?: Linter.RuleEntry<MarkdownPreferencesLevel2HeadingStyle>;
|
|
83
|
+
/**
|
|
84
|
+
* enforce linebreaks after opening and before closing link brackets
|
|
85
|
+
* @see https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/link-bracket-newline.html
|
|
86
|
+
*/
|
|
87
|
+
'markdown-preferences/link-bracket-newline'?: Linter.RuleEntry<MarkdownPreferencesLinkBracketNewline>;
|
|
88
|
+
/**
|
|
89
|
+
* enforce consistent spacing inside link brackets
|
|
90
|
+
* @see https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/link-bracket-spacing.html
|
|
91
|
+
*/
|
|
92
|
+
'markdown-preferences/link-bracket-spacing'?: Linter.RuleEntry<MarkdownPreferencesLinkBracketSpacing>;
|
|
93
|
+
/**
|
|
94
|
+
* enforce a consistent style for link destinations
|
|
95
|
+
* @see https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/link-destination-style.html
|
|
96
|
+
*/
|
|
97
|
+
'markdown-preferences/link-destination-style'?: Linter.RuleEntry<MarkdownPreferencesLinkDestinationStyle>;
|
|
98
|
+
/**
|
|
99
|
+
* enforce a consistent style for link titles
|
|
100
|
+
* @see https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/link-title-style.html
|
|
101
|
+
*/
|
|
102
|
+
'markdown-preferences/link-title-style'?: Linter.RuleEntry<MarkdownPreferencesLinkTitleStyle>;
|
|
83
103
|
/**
|
|
84
104
|
* enforce consistent alignment of list markers
|
|
85
105
|
* @see https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/list-marker-alignment.html
|
|
@@ -90,6 +110,11 @@ interface RuleOptions {
|
|
|
90
110
|
* @see https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/no-laziness-blockquotes.html
|
|
91
111
|
*/
|
|
92
112
|
'markdown-preferences/no-laziness-blockquotes'?: Linter.RuleEntry<[]>;
|
|
113
|
+
/**
|
|
114
|
+
* disallow multiple spaces
|
|
115
|
+
* @see https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/no-multi-spaces.html
|
|
116
|
+
*/
|
|
117
|
+
'markdown-preferences/no-multi-spaces'?: Linter.RuleEntry<[]>;
|
|
93
118
|
/**
|
|
94
119
|
* disallow multiple empty lines in Markdown files.
|
|
95
120
|
* @see https://ota-meshi.github.io/eslint-plugin-markdown-preferences/rules/no-multiple-empty-lines.html
|
|
@@ -259,6 +284,24 @@ type MarkdownPreferencesLevel2HeadingStyle = [] | [{
|
|
|
259
284
|
style?: ("atx" | "setext");
|
|
260
285
|
allowMultilineSetext?: boolean;
|
|
261
286
|
}];
|
|
287
|
+
type MarkdownPreferencesLinkBracketNewline = [] | [{
|
|
288
|
+
newline?: ("always" | "never" | "consistent");
|
|
289
|
+
multiline?: boolean;
|
|
290
|
+
}];
|
|
291
|
+
type MarkdownPreferencesLinkBracketSpacing = [] | [{
|
|
292
|
+
space?: ("always" | "never");
|
|
293
|
+
imagesInLinks?: boolean;
|
|
294
|
+
}];
|
|
295
|
+
type MarkdownPreferencesLinkDestinationStyle = [] | [{
|
|
296
|
+
style?: ("bare" | "pointy-brackets");
|
|
297
|
+
avoidEscape?: boolean;
|
|
298
|
+
[k: string]: unknown | undefined;
|
|
299
|
+
}];
|
|
300
|
+
type MarkdownPreferencesLinkTitleStyle = [] | [{
|
|
301
|
+
style?: ("double" | "single" | "parentheses");
|
|
302
|
+
avoidEscape?: boolean;
|
|
303
|
+
[k: string]: unknown | undefined;
|
|
304
|
+
}];
|
|
262
305
|
type MarkdownPreferencesListMarkerAlignment = [] | [{
|
|
263
306
|
align?: ("left" | "right");
|
|
264
307
|
}];
|
|
@@ -351,6 +394,20 @@ type MarkdownPreferencesThematicBreakSequencePattern = [] | [{
|
|
|
351
394
|
pattern: (string | string | string);
|
|
352
395
|
}];
|
|
353
396
|
declare namespace recommended_d_exports {
|
|
397
|
+
export { files$1 as files, language$1 as language, languageOptions$1 as languageOptions, name$2 as name, plugins$1 as plugins, rules$2 as rules };
|
|
398
|
+
}
|
|
399
|
+
declare const name$2 = "markdown-preferences/recommended";
|
|
400
|
+
declare const files$1: string[];
|
|
401
|
+
declare const language$1 = "markdown/gfm";
|
|
402
|
+
declare const languageOptions$1: {
|
|
403
|
+
frontmatter: string;
|
|
404
|
+
};
|
|
405
|
+
declare const plugins$1: {
|
|
406
|
+
markdown: typeof markdown;
|
|
407
|
+
readonly "markdown-preferences": ESLint.Plugin;
|
|
408
|
+
};
|
|
409
|
+
declare const rules$2: Linter.RulesRecord;
|
|
410
|
+
declare namespace standard_d_exports {
|
|
354
411
|
export { files, language, languageOptions, name$1 as name, plugins, rules$1 as rules };
|
|
355
412
|
}
|
|
356
413
|
declare const name$1 = "markdown-preferences/recommended";
|
|
@@ -368,11 +425,12 @@ declare namespace meta_d_exports {
|
|
|
368
425
|
export { name, version };
|
|
369
426
|
}
|
|
370
427
|
declare const name: "eslint-plugin-markdown-preferences";
|
|
371
|
-
declare const version: "0.
|
|
428
|
+
declare const version: "0.22.0";
|
|
372
429
|
//#endregion
|
|
373
430
|
//#region src/index.d.ts
|
|
374
431
|
declare const configs: {
|
|
375
432
|
recommended: typeof recommended_d_exports;
|
|
433
|
+
standard: typeof standard_d_exports;
|
|
376
434
|
};
|
|
377
435
|
declare const rules: Record<string, RuleDefinition>;
|
|
378
436
|
declare const resources: {
|
|
@@ -383,6 +441,7 @@ declare const _default: {
|
|
|
383
441
|
meta: typeof meta_d_exports;
|
|
384
442
|
configs: {
|
|
385
443
|
recommended: typeof recommended_d_exports;
|
|
444
|
+
standard: typeof standard_d_exports;
|
|
386
445
|
};
|
|
387
446
|
rules: Record<string, RuleDefinition<_eslint_core0.RuleDefinitionTypeOptions>>;
|
|
388
447
|
resources: {
|