@storm-software/eslint 0.163.13 → 0.163.15
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 +12 -0
- package/package.json +4 -4
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
|
@@ -4502,6 +4502,13 @@ var workspaceDirectorySchema = object({
|
|
|
4502
4502
|
schemaRegistry.add(workspaceDirectorySchema, {
|
|
4503
4503
|
description: "Various directories used by the workspace to store data, cache, and configuration files"
|
|
4504
4504
|
});
|
|
4505
|
+
var variantSchema = _default(
|
|
4506
|
+
_enum(["minimal", "monorepo"]),
|
|
4507
|
+
"monorepo"
|
|
4508
|
+
);
|
|
4509
|
+
schemaRegistry.add(variantSchema, {
|
|
4510
|
+
description: "The variant of the workspace. This can be used to enable or disable certain features or configurations."
|
|
4511
|
+
});
|
|
4505
4512
|
var errorCodesFileSchema = _default(
|
|
4506
4513
|
string2().check(_trim()),
|
|
4507
4514
|
STORM_DEFAULT_ERROR_CODES_FILE
|
|
@@ -4699,6 +4706,7 @@ var workspaceConfigSchema = object({
|
|
|
4699
4706
|
$schema: schemaNameSchema,
|
|
4700
4707
|
extends: extendsSchema,
|
|
4701
4708
|
name: nameSchema,
|
|
4709
|
+
variant: variantSchema,
|
|
4702
4710
|
namespace: namespaceSchema,
|
|
4703
4711
|
organization: orgSchema,
|
|
4704
4712
|
repository: repositorySchema,
|
|
@@ -4940,6 +4948,7 @@ var getConfigEnv = () => {
|
|
|
4940
4948
|
let config3 = {
|
|
4941
4949
|
extends: process.env[`${prefix}EXTENDS`] || void 0,
|
|
4942
4950
|
name: process.env[`${prefix}NAME`] || void 0,
|
|
4951
|
+
variant: process.env[`${prefix}VARIANT`] || void 0,
|
|
4943
4952
|
namespace: process.env[`${prefix}NAMESPACE`] || void 0,
|
|
4944
4953
|
owner: process.env[`${prefix}OWNER`] || void 0,
|
|
4945
4954
|
bot: {
|
|
@@ -5165,6 +5174,9 @@ var setConfigEnv = (config3) => {
|
|
|
5165
5174
|
if (config3.name) {
|
|
5166
5175
|
process.env[`${prefix}NAME`] = config3.name;
|
|
5167
5176
|
}
|
|
5177
|
+
if (config3.variant) {
|
|
5178
|
+
process.env[`${prefix}VARIANT`] = config3.variant;
|
|
5179
|
+
}
|
|
5168
5180
|
if (config3.namespace) {
|
|
5169
5181
|
process.env[`${prefix}NAMESPACE`] = config3.namespace;
|
|
5170
5182
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/eslint",
|
|
3
|
-
"version": "0.163.
|
|
3
|
+
"version": "0.163.15",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing the base ESLint configuration used by Storm Software across many projects.",
|
|
6
6
|
"repository": {
|
|
@@ -163,8 +163,8 @@
|
|
|
163
163
|
"@eslint/eslintrc": "^3.3.1",
|
|
164
164
|
"@eslint/markdown": "^6.6.0",
|
|
165
165
|
"@nx/eslint-plugin": "^21.4.1",
|
|
166
|
-
"@storm-software/config": "^1.
|
|
167
|
-
"@storm-software/config-tools": "^1.
|
|
166
|
+
"@storm-software/config": "^1.129.0",
|
|
167
|
+
"@storm-software/config-tools": "^1.181.0",
|
|
168
168
|
"@stylistic/eslint-plugin": "^4.4.1",
|
|
169
169
|
"@typescript-eslint/eslint-plugin": "^8.35.0",
|
|
170
170
|
"@typescript-eslint/parser": "^8.35.0",
|
|
@@ -240,5 +240,5 @@
|
|
|
240
240
|
},
|
|
241
241
|
"publishConfig": { "access": "public" },
|
|
242
242
|
"sideEffects": false,
|
|
243
|
-
"gitHead": "
|
|
243
|
+
"gitHead": "bd2cceced6f34cd309c7a8cf92fca76621c40470"
|
|
244
244
|
}
|