@storm-software/eslint 0.128.0 → 0.129.1
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/preset.js +13 -4
- package/package.json +1 -1
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/preset.js
CHANGED
|
@@ -260,7 +260,14 @@ async function stylistic(options = {}) {
|
|
|
260
260
|
],
|
|
261
261
|
"style/operator-linebreak": [
|
|
262
262
|
"error",
|
|
263
|
-
"after"
|
|
263
|
+
"after",
|
|
264
|
+
{
|
|
265
|
+
overrides: {
|
|
266
|
+
"=": "none",
|
|
267
|
+
"?": "before",
|
|
268
|
+
":": "before"
|
|
269
|
+
}
|
|
270
|
+
}
|
|
264
271
|
],
|
|
265
272
|
"style/jsx-indent": [
|
|
266
273
|
"error",
|
|
@@ -1673,7 +1680,9 @@ async function javascript(options = {}) {
|
|
|
1673
1680
|
"after",
|
|
1674
1681
|
{
|
|
1675
1682
|
overrides: {
|
|
1676
|
-
"=": "none"
|
|
1683
|
+
"=": "none",
|
|
1684
|
+
"?": "before",
|
|
1685
|
+
":": "before"
|
|
1677
1686
|
}
|
|
1678
1687
|
}
|
|
1679
1688
|
],
|
|
@@ -2553,7 +2562,7 @@ async function node() {
|
|
|
2553
2562
|
],
|
|
2554
2563
|
"node/prefer-global/process": [
|
|
2555
2564
|
"error",
|
|
2556
|
-
"
|
|
2565
|
+
"always"
|
|
2557
2566
|
],
|
|
2558
2567
|
"node/process-exit-as-throw": "error"
|
|
2559
2568
|
}
|
|
@@ -3431,7 +3440,7 @@ async function typescript(options = {}) {
|
|
|
3431
3440
|
"ts/no-unsafe-assignment": "error",
|
|
3432
3441
|
"ts/no-unsafe-call": "error",
|
|
3433
3442
|
"ts/no-unsafe-member-access": "error",
|
|
3434
|
-
"ts/no-unsafe-return": "
|
|
3443
|
+
"ts/no-unsafe-return": "off",
|
|
3435
3444
|
"ts/promise-function-async": "error",
|
|
3436
3445
|
"ts/restrict-plus-operands": "error",
|
|
3437
3446
|
"ts/restrict-template-expressions": "error",
|
package/package.json
CHANGED