@storm-software/workspace-tools 1.111.0 → 1.112.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.111.0",
3
+ "version": "1.112.0",
4
4
  "type": "commonjs",
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "repository": {
@@ -0,0 +1,155 @@
1
+ {
2
+ "comment": "Be explicit by listing every available rule. https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md",
3
+ "comment": "Note that there will be numeric gaps, not every MD number is implemented in markdownlint.",
4
+
5
+ "comment": "MD001: Header levels should only increment by one level at a time.",
6
+ "header-increment": true,
7
+
8
+ "comment": "MD002: First header should be a top level header.",
9
+ "first-header-h1": true,
10
+
11
+ "comment": "MD003: Header style: start with hashes.",
12
+ "header-style": {
13
+ "style": "atx"
14
+ },
15
+
16
+ "comment": "MD004: Unordered list style",
17
+ "ul-style": {
18
+ "style": "dash"
19
+ },
20
+
21
+ "comment": "MD005: Consistent indentation for list items at the same level.",
22
+ "list-indent": true,
23
+
24
+ "comment": "MD006: Consider starting bulleted lists at the beginning of the line.",
25
+ "ul-start-left": false,
26
+
27
+ "comment": "MD007: Unordered list indentation: 2 spaces.",
28
+ "ul-indent": {
29
+ "indent": 2,
30
+ "start_indented": true
31
+ },
32
+
33
+ "comment": "MD009: Disallow trailing spaces!",
34
+ "no-trailing-spaces": {
35
+ "br_spaces": 0,
36
+ "comment": "Empty lines inside list items should not be indented.",
37
+ "list_item_empty_lines": false
38
+ },
39
+
40
+ "comment": "MD010: No hard tabs, not even in code blocks.",
41
+ "no-hard-tabs": {
42
+ "code_blocks": true
43
+ },
44
+
45
+ "comment": "MD011: Prevent reversed link syntax",
46
+ "no-reversed-links": true,
47
+
48
+ "comment": "MD012: Disallow multiple consecutive blank lines.",
49
+ "no-multiple-blanks": {
50
+ "maximum": 1
51
+ },
52
+
53
+ "comment": "MD013: Line length",
54
+ "line-length": false,
55
+
56
+ "comment": "MD014: Disallow use of dollar signs($) before commands without showing output.",
57
+ "commands-show-output": true,
58
+
59
+ "comment": "MD018: Disallow space after hash on atx style header.",
60
+ "no-missing-space-atx": true,
61
+
62
+ "comment": "MD019: Disallow multiple spaces after hash on atx style header.",
63
+ "no-multiple-space-atx": true,
64
+
65
+ "comment": "MD020: No space should be inside hashes on closed atx style header.",
66
+ "no-missing-space-closed-atx": true,
67
+
68
+ "comment": "MD021: Disallow multiple spaces inside hashes on closed atx style header.",
69
+ "no-multiple-space-closed-atx": true,
70
+
71
+ "comment": "MD022: Headers should be surrounded by blank lines.",
72
+ "comment": "Some headers have preceding HTML anchors. Unfortunate that we have to disable this, as it otherwise catches a real problem that trips up some Markdown renderers",
73
+ "blanks-around-headers": false,
74
+
75
+ "comment": "MD023: Headers must start at the beginning of the line.",
76
+ "header-start-left": true,
77
+
78
+ "comment": "MD024: Disallow multiple headers with the same content.",
79
+ "no-duplicate-header": true,
80
+
81
+ "comment": "MD025: Disallow multiple top level headers in the same document.",
82
+ "comment": "Gotta have a matching closing brace at the end.",
83
+ "single-h1": false,
84
+
85
+ "comment": "MD026: Disallow trailing punctuation in header.",
86
+ "comment": "You must have a semicolon after the ending closing brace.",
87
+ "no-trailing-punctuation": {
88
+ "punctuation": ".,:!?"
89
+ },
90
+ "comment": "MD027: Dissalow multiple spaces after blockquote symbol",
91
+ "no-multiple-space-blockquote": true,
92
+
93
+ "comment": "MD028: Blank line inside blockquote",
94
+ "comment": "Some 'Why?' and 'Why not?' blocks are separated by a blank line",
95
+ "no-blanks-blockquote": false,
96
+
97
+ "comment": "MD029: Ordered list item prefix",
98
+ "ol-prefix": {
99
+ "style": "one"
100
+ },
101
+
102
+ "comment": "MD030: Spaces after list markers",
103
+ "list-marker-space": {
104
+ "ul_single": 1,
105
+ "ol_single": 1,
106
+ "ul_multi": 1,
107
+ "ol_multi": 1
108
+ },
109
+
110
+ "comment": "MD031: Fenced code blocks should be surrounded by blank lines",
111
+ "blanks-around-fences": true,
112
+
113
+ "comment": "MD032: Lists should be surrounded by blank lines",
114
+ "comment": "Some lists have preceding HTML anchors. Unfortunate that we have to disable this, as it otherwise catches a real problem that trips up some Markdown renderers",
115
+ "blanks-around-lists": false,
116
+
117
+ "comment": "MD033: Disallow inline HTML",
118
+ "comment": "HTML is needed for explicit anchors",
119
+ "no-inline-html": false,
120
+
121
+ "comment": "MD034: No bare URLs should be used",
122
+ "no-bare-urls": true,
123
+
124
+ "comment": "MD035: Horizontal rule style",
125
+ "hr-style": {
126
+ "style": "consistent"
127
+ },
128
+
129
+ "comment": "MD036: Do not use emphasis instead of a header.",
130
+ "no-emphasis-as-header": false,
131
+
132
+ "comment": "MD037: Disallow spaces inside emphasis markers.",
133
+ "no-space-in-emphasis": true,
134
+
135
+ "comment": "MD038: Disallow spaces inside code span elements.",
136
+ "no-space-in-code": true,
137
+
138
+ "comment": "MD039: Disallow spaces inside link text.",
139
+ "no-space-in-links": true,
140
+
141
+ "comment": "MD040: Fenced code blocks should have a language specified.",
142
+ "fenced-code-language": true,
143
+
144
+ "comment": "MD041: First line in file should be a top level header.",
145
+ "first-line-h1": true,
146
+
147
+ "comment": "MD042: No empty links",
148
+ "no-empty-links": true,
149
+
150
+ "comment": "MD043: Required header structure.",
151
+ "required-headers": false,
152
+
153
+ "comment": "MD044: Proper names should have the correct capitalization.",
154
+ "proper-names": false
155
+ }
@@ -15,9 +15,15 @@
15
15
 
16
16
  [![github](https://img.shields.io/github/package-json/v/<%= namespace %>/<%= name %>?style=for-the-badge&color=1fb2a6)](https://github.com/<%= namespace %>/<%= name %>)&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 docusaurus](https://img.shields.io/badge/documented_with-docusaurus-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/<%= namespace %>/<%= name %>/build-release.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
17
17
 
18
+ <!-- prettier-ignore-start -->
19
+ <!-- markdownlint-disable -->
20
+
18
21
  > [!IMPORTANT]
19
22
  > This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be availible through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.
20
23
 
24
+ <!-- markdownlint-restore -->
25
+ <!-- prettier-ignore-end -->
26
+
21
27
  <br />
22
28
 
23
29
  <!--#if GitHubActions-->
@@ -68453,11 +68453,15 @@ async function presetGeneratorFn(tree, options) {
68453
68453
  "@taplo/cli": "0.7.0",
68454
68454
  "@types/jest": "29.5.12",
68455
68455
  "@types/node": "20.12.5",
68456
- "@typescript-eslint/parser": "7.6.0",
68457
68456
  "conventional-changelog-conventionalcommits": "7.0.2",
68458
68457
  "esbuild": "0.20.2",
68459
68458
  "esbuild-register": "3.5.0",
68460
- "eslint": "9.0.0",
68459
+ "eslint": "^9.0.0",
68460
+ "eslint-config-storm-software": "latest",
68461
+ "eslint-plugin-import": "^2.29.1",
68462
+ "eslint-plugin-jsx-a11y": "^6.8.0",
68463
+ "eslint-plugin-react": "^7.34.1",
68464
+ "eslint-plugin-react-hooks": "^4.6.0",
68461
68465
  "jest": "29.7.0",
68462
68466
  "jest-environment-jsdom": "29.7.0",
68463
68467
  "jest-environment-node": "29.7.0",
@@ -68471,7 +68475,9 @@ async function presetGeneratorFn(tree, options) {
68471
68475
  "tsconfig-paths": "4.2.0",
68472
68476
  "tslib": "2.6.2",
68473
68477
  "typescript": typescriptVersion,
68474
- "verdaccio": "5.30.3"
68478
+ "verdaccio": "5.30.3",
68479
+ "knip": "5.25.2",
68480
+ "sherif": "0.10.0"
68475
68481
  };
68476
68482
  if (options.includeApps) {
68477
68483
  dependencies = {
@@ -1,10 +0,0 @@
1
- const options =
2
- require("./node_modules/@storm-software/markdownlint/index.js").init({
3
- default: true,
4
- "line-length": false
5
- });
6
-
7
- module.exports = {
8
- config: options,
9
- customRules: ["./node_modules/@storm-software/markdownlint/index.js"]
10
- };