@storm-software/eslint 0.28.0 → 0.29.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/README.md +1 -1
- package/dist/preset.mjs +3 -3
- 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.mjs
CHANGED
|
@@ -1188,7 +1188,7 @@ const config = {
|
|
|
1188
1188
|
*
|
|
1189
1189
|
* 🚫 Not fixable - https://github.com/microsoft/tsdoc/tree/master/eslint-plugin
|
|
1190
1190
|
*/
|
|
1191
|
-
"tsdoc/syntax": "
|
|
1191
|
+
"tsdoc/syntax": "warn"
|
|
1192
1192
|
};
|
|
1193
1193
|
|
|
1194
1194
|
const CODE_BLOCK = "**/*.md{,x}/*";
|
|
@@ -1288,7 +1288,6 @@ function stormPreset(options = {
|
|
|
1288
1288
|
"no-undef": 0,
|
|
1289
1289
|
"no-unused-expressions": 0,
|
|
1290
1290
|
"padded-blocks": 0,
|
|
1291
|
-
"@typescript-eslint/no-unused-vars": 0,
|
|
1292
1291
|
"no-empty-pattern": 0,
|
|
1293
1292
|
"no-redeclare": 0,
|
|
1294
1293
|
"no-import-assign": 0,
|
|
@@ -1363,7 +1362,8 @@ function stormPreset(options = {
|
|
|
1363
1362
|
}
|
|
1364
1363
|
]
|
|
1365
1364
|
}
|
|
1366
|
-
]
|
|
1365
|
+
],
|
|
1366
|
+
"unicorn/prefer-logical-operator-over-ternary": "warn"
|
|
1367
1367
|
}
|
|
1368
1368
|
},
|
|
1369
1369
|
// Json
|
package/package.json
CHANGED