@storm-software/workspace-tools 1.259.0 → 1.259.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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.259.2 (2025-02-23)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **eslint:** Ensure all formatting parameters align across rules ([dac7bf767](https://github.com/storm-software/storm-ops/commit/dac7bf767))
|
|
6
|
+
|
|
7
|
+
## 1.259.1 (2025-02-22)
|
|
8
|
+
|
|
9
|
+
### Miscellaneous
|
|
10
|
+
|
|
11
|
+
- **monorepo:** Reformat and lint workspace files ([9b706de2f](https://github.com/storm-software/storm-ops/commit/9b706de2f))
|
|
12
|
+
|
|
1
13
|
## 1.259.0 (2025-02-21)
|
|
2
14
|
|
|
3
15
|
### Features
|
|
@@ -3,22 +3,5 @@
|
|
|
3
3
|
Error.stackTraceLimit = Number.POSITIVE_INFINITY;
|
|
4
4
|
|
|
5
5
|
export default getStormConfig({
|
|
6
|
-
name: "<%= name %>"
|
|
7
|
-
rules: {
|
|
8
|
-
"unicorn/no-null": 0,
|
|
9
|
-
"unicorn/no-useless-switch-case": 0,
|
|
10
|
-
"react/require-default-props": 0,
|
|
11
|
-
"react/jsx-closing-bracket-location": 0,
|
|
12
|
-
"indent": 0,
|
|
13
|
-
"no-redeclare": 0,
|
|
14
|
-
"class-methods-use-this": 0,
|
|
15
|
-
"operator-linebreak": 0,
|
|
16
|
-
"function-paren-newline": 0,
|
|
17
|
-
"space-before-function-paren": 0
|
|
18
|
-
},
|
|
19
|
-
markdown: false,
|
|
20
|
-
react: false,
|
|
21
|
-
useUnicorn: true,
|
|
22
|
-
typescriptEslintConfigType: "base",
|
|
23
|
-
logLevel: "info"
|
|
6
|
+
name: "<%= name %>"
|
|
24
7
|
});
|
package/package.json
CHANGED