@storm-software/eslint 0.160.0 → 0.160.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/README.md +1 -1
- package/dist/types.d.ts +25 -1
- package/package.json +6 -5
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,6 +2456,11 @@ 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 bare URLs
|
|
2461
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-bare-urls.md
|
|
2462
|
+
*/
|
|
2463
|
+
'markdown/no-bare-urls'?: Linter.RuleEntry<[]>
|
|
2459
2464
|
/**
|
|
2460
2465
|
* Disallow duplicate definitions
|
|
2461
2466
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-duplicate-definitions.md
|
|
@@ -2465,7 +2470,7 @@ Backward pagination arguments
|
|
|
2465
2470
|
* Disallow duplicate headings in the same document
|
|
2466
2471
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-duplicate-headings.md
|
|
2467
2472
|
*/
|
|
2468
|
-
'markdown/no-duplicate-headings'?: Linter.RuleEntry<
|
|
2473
|
+
'markdown/no-duplicate-headings'?: Linter.RuleEntry<MarkdownNoDuplicateHeadings>
|
|
2469
2474
|
/**
|
|
2470
2475
|
* Disallow empty definitions
|
|
2471
2476
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-empty-definitions.md
|
|
@@ -2501,11 +2506,21 @@ Backward pagination arguments
|
|
|
2501
2506
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-label-refs.md
|
|
2502
2507
|
*/
|
|
2503
2508
|
'markdown/no-missing-label-refs'?: Linter.RuleEntry<[]>
|
|
2509
|
+
/**
|
|
2510
|
+
* Disallow link fragments that do not reference valid headings
|
|
2511
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-link-fragments.md
|
|
2512
|
+
*/
|
|
2513
|
+
'markdown/no-missing-link-fragments'?: Linter.RuleEntry<MarkdownNoMissingLinkFragments>
|
|
2504
2514
|
/**
|
|
2505
2515
|
* Disallow multiple H1 headings in the same document
|
|
2506
2516
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-multiple-h1.md
|
|
2507
2517
|
*/
|
|
2508
2518
|
'markdown/no-multiple-h1'?: Linter.RuleEntry<MarkdownNoMultipleH1>
|
|
2519
|
+
/**
|
|
2520
|
+
* Disallow reversed link and image syntax
|
|
2521
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-reversed-media-syntax.md
|
|
2522
|
+
*/
|
|
2523
|
+
'markdown/no-reversed-media-syntax'?: Linter.RuleEntry<[]>
|
|
2509
2524
|
/**
|
|
2510
2525
|
* Require alternative text for images
|
|
2511
2526
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/require-alt-text.md
|
|
@@ -10306,10 +10321,19 @@ type MarkdownNoDuplicateDefinitions = []|[{
|
|
|
10306
10321
|
allowDefinitions?: string[]
|
|
10307
10322
|
allowFootnoteDefinitions?: string[]
|
|
10308
10323
|
}]
|
|
10324
|
+
// ----- markdown/no-duplicate-headings -----
|
|
10325
|
+
type MarkdownNoDuplicateHeadings = []|[{
|
|
10326
|
+
checkSiblingsOnly?: boolean
|
|
10327
|
+
}]
|
|
10309
10328
|
// ----- markdown/no-html -----
|
|
10310
10329
|
type MarkdownNoHtml = []|[{
|
|
10311
10330
|
allowed?: string[]
|
|
10312
10331
|
}]
|
|
10332
|
+
// ----- markdown/no-missing-link-fragments -----
|
|
10333
|
+
type MarkdownNoMissingLinkFragments = []|[{
|
|
10334
|
+
ignoreCase?: boolean
|
|
10335
|
+
allowPattern?: string
|
|
10336
|
+
}]
|
|
10313
10337
|
// ----- markdown/no-multiple-h1 -----
|
|
10314
10338
|
type MarkdownNoMultipleH1 = []|[{
|
|
10315
10339
|
frontmatterTitle?: string
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/eslint",
|
|
3
|
-
"version": "0.160.
|
|
3
|
+
"version": "0.160.2",
|
|
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,10 +160,10 @@
|
|
|
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.6.0",
|
|
164
164
|
"@nx/eslint-plugin": "21.0.3",
|
|
165
|
-
"@storm-software/config": "^1.124.
|
|
166
|
-
"@storm-software/config-tools": "^1.174.
|
|
165
|
+
"@storm-software/config": "^1.124.3",
|
|
166
|
+
"@storm-software/config-tools": "^1.174.4",
|
|
167
167
|
"@stylistic/eslint-plugin": "^4.4.1",
|
|
168
168
|
"@typescript-eslint/eslint-plugin": "^8.34.1",
|
|
169
169
|
"@typescript-eslint/parser": "^8.34.1",
|
|
@@ -236,5 +236,6 @@
|
|
|
236
236
|
"typescript": "^5.8.3"
|
|
237
237
|
},
|
|
238
238
|
"publishConfig": { "access": "public" },
|
|
239
|
-
"sideEffects": false
|
|
239
|
+
"sideEffects": false,
|
|
240
|
+
"gitHead": "cc6b643307c447a3a7e1118fee4893b3be34cdbd"
|
|
240
241
|
}
|