@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 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
- [![Version](https://img.shields.io/badge/version-0.163.11-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.163.13-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
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.13",
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.128.13",
167
- "@storm-software/config-tools": "^1.180.15",
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": "ead820214c8c4cf25d5311c154819f2c2f8f7356"
243
+ "gitHead": "bd2cceced6f34cd309c7a8cf92fca76621c40470"
244
244
  }