@storm-software/eslint 0.159.3 → 0.159.4
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 +1 -1
- package/dist/types.d.ts +44 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/dist/types.d.ts
CHANGED
|
@@ -2456,11 +2456,26 @@ Backward pagination arguments
|
|
|
2456
2456
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/heading-increment.md
|
|
2457
2457
|
*/
|
|
2458
2458
|
'markdown/heading-increment'?: Linter.RuleEntry<[]>
|
|
2459
|
+
/**
|
|
2460
|
+
* Disallow duplicate definitions
|
|
2461
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-duplicate-definitions.md
|
|
2462
|
+
*/
|
|
2463
|
+
'markdown/no-duplicate-definitions'?: Linter.RuleEntry<MarkdownNoDuplicateDefinitions>
|
|
2459
2464
|
/**
|
|
2460
2465
|
* Disallow duplicate headings in the same document
|
|
2461
2466
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-duplicate-headings.md
|
|
2462
2467
|
*/
|
|
2463
2468
|
'markdown/no-duplicate-headings'?: Linter.RuleEntry<[]>
|
|
2469
|
+
/**
|
|
2470
|
+
* Disallow empty definitions
|
|
2471
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-empty-definitions.md
|
|
2472
|
+
*/
|
|
2473
|
+
'markdown/no-empty-definitions'?: Linter.RuleEntry<[]>
|
|
2474
|
+
/**
|
|
2475
|
+
* Disallow empty images
|
|
2476
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-empty-images.md
|
|
2477
|
+
*/
|
|
2478
|
+
'markdown/no-empty-images'?: Linter.RuleEntry<[]>
|
|
2464
2479
|
/**
|
|
2465
2480
|
* Disallow empty links
|
|
2466
2481
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-empty-links.md
|
|
@@ -2476,11 +2491,31 @@ Backward pagination arguments
|
|
|
2476
2491
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-invalid-label-refs.md
|
|
2477
2492
|
*/
|
|
2478
2493
|
'markdown/no-invalid-label-refs'?: Linter.RuleEntry<[]>
|
|
2494
|
+
/**
|
|
2495
|
+
* Disallow headings without a space after the hash characters
|
|
2496
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-atx-heading-space.md
|
|
2497
|
+
*/
|
|
2498
|
+
'markdown/no-missing-atx-heading-space'?: Linter.RuleEntry<[]>
|
|
2479
2499
|
/**
|
|
2480
2500
|
* Disallow missing label references
|
|
2481
2501
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-label-refs.md
|
|
2482
2502
|
*/
|
|
2483
2503
|
'markdown/no-missing-label-refs'?: Linter.RuleEntry<[]>
|
|
2504
|
+
/**
|
|
2505
|
+
* Disallow multiple H1 headings in the same document
|
|
2506
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-multiple-h1.md
|
|
2507
|
+
*/
|
|
2508
|
+
'markdown/no-multiple-h1'?: Linter.RuleEntry<MarkdownNoMultipleH1>
|
|
2509
|
+
/**
|
|
2510
|
+
* Require alternative text for images
|
|
2511
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/require-alt-text.md
|
|
2512
|
+
*/
|
|
2513
|
+
'markdown/require-alt-text'?: Linter.RuleEntry<[]>
|
|
2514
|
+
/**
|
|
2515
|
+
* Disallow data rows in a GitHub Flavored Markdown table from having more cells than the header row
|
|
2516
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/table-column-count.md
|
|
2517
|
+
*/
|
|
2518
|
+
'markdown/table-column-count'?: Linter.RuleEntry<[]>
|
|
2484
2519
|
/**
|
|
2485
2520
|
* Enforce a maximum number of classes per file
|
|
2486
2521
|
* @see https://eslint.org/docs/latest/rules/max-classes-per-file
|
|
@@ -10251,10 +10286,19 @@ type LogicalAssignmentOperators = (([]|["always"]|["always", {
|
|
|
10251
10286
|
type MarkdownFencedCodeLanguage = []|[{
|
|
10252
10287
|
required?: string[]
|
|
10253
10288
|
}]
|
|
10289
|
+
// ----- markdown/no-duplicate-definitions -----
|
|
10290
|
+
type MarkdownNoDuplicateDefinitions = []|[{
|
|
10291
|
+
allowDefinitions?: string[]
|
|
10292
|
+
allowFootnoteDefinitions?: string[]
|
|
10293
|
+
}]
|
|
10254
10294
|
// ----- markdown/no-html -----
|
|
10255
10295
|
type MarkdownNoHtml = []|[{
|
|
10256
10296
|
allowed?: string[]
|
|
10257
10297
|
}]
|
|
10298
|
+
// ----- markdown/no-multiple-h1 -----
|
|
10299
|
+
type MarkdownNoMultipleH1 = []|[{
|
|
10300
|
+
frontmatterTitle?: string
|
|
10301
|
+
}]
|
|
10258
10302
|
// ----- max-classes-per-file -----
|
|
10259
10303
|
type MaxClassesPerFile = []|[(number | {
|
|
10260
10304
|
ignoreExpressions?: boolean
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/eslint",
|
|
3
|
-
"version": "0.159.
|
|
3
|
+
"version": "0.159.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "⚡ A package containing the base ESLint configuration used by Storm Software across many projects.",
|
|
6
6
|
"repository": {
|
|
@@ -160,7 +160,7 @@
|
|
|
160
160
|
"@clack/prompts": "^0.10.1",
|
|
161
161
|
"@cspell/eslint-plugin": "^8.19.4",
|
|
162
162
|
"@eslint/eslintrc": "^3.3.1",
|
|
163
|
-
"@eslint/markdown": "^6.
|
|
163
|
+
"@eslint/markdown": "^6.5.0",
|
|
164
164
|
"@nx/eslint-plugin": "21.0.3",
|
|
165
165
|
"@stylistic/eslint-plugin": "^4.4.1",
|
|
166
166
|
"@typescript-eslint/eslint-plugin": "^8.33.1",
|