@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 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
- [![Version](https://img.shields.io/badge/version-0.159.19-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.160.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
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.0",
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.5.0",
163
+ "@eslint/markdown": "^6.6.0",
164
164
  "@nx/eslint-plugin": "21.0.3",
165
- "@storm-software/config": "^1.124.1",
166
- "@storm-software/config-tools": "^1.174.2",
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
  }