@storm-software/eslint 0.27.0 → 0.28.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.mjs +19 -1
- 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}/*";
|
|
@@ -1381,6 +1381,24 @@ function stormPreset(options = {
|
|
|
1381
1381
|
"@nx/workspace/valid-schema-description": "error"
|
|
1382
1382
|
}
|
|
1383
1383
|
},
|
|
1384
|
+
{
|
|
1385
|
+
files: ["**/package.json"],
|
|
1386
|
+
rules: {
|
|
1387
|
+
"@nx/dependency-checks": [
|
|
1388
|
+
"error",
|
|
1389
|
+
{
|
|
1390
|
+
buildTargets: ["build"],
|
|
1391
|
+
ignoredDependencies: ["typescript"],
|
|
1392
|
+
ignoredFiles: [],
|
|
1393
|
+
checkMissingDependencies: true,
|
|
1394
|
+
checkObsoleteDependencies: true,
|
|
1395
|
+
checkVersionMismatches: false,
|
|
1396
|
+
includeTransitiveDependencies: true,
|
|
1397
|
+
useLocalPathsForWorkspaceDependencies: true
|
|
1398
|
+
}
|
|
1399
|
+
]
|
|
1400
|
+
}
|
|
1401
|
+
},
|
|
1384
1402
|
// YML
|
|
1385
1403
|
// https://www.npmjs.com/package/eslint-plugin-yml
|
|
1386
1404
|
...yml.configs["flat/recommended"],
|
package/package.json
CHANGED