@storm-software/eslint 0.160.13 → 0.160.14
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 +37 -46
- 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
|
@@ -1911,24 +1911,24 @@ init_esm_shims();
|
|
|
1911
1911
|
|
|
1912
1912
|
// ../config/src/constants.ts
|
|
1913
1913
|
init_esm_shims();
|
|
1914
|
-
var STORM_DEFAULT_DOCS = "https://stormsoftware.com
|
|
1914
|
+
var STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
|
|
1915
1915
|
var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
1916
1916
|
var STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
|
|
1917
1917
|
var STORM_DEFAULT_LICENSING = "https://stormsoftware.com/license";
|
|
1918
1918
|
var STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
1919
1919
|
var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
|
|
1920
|
-
var
|
|
1921
|
-
var
|
|
1922
|
-
var
|
|
1923
|
-
var
|
|
1924
|
-
var
|
|
1925
|
-
var
|
|
1920
|
+
var STORM_DEFAULT_SOCIAL_TWITTER = "StormSoftwareHQ";
|
|
1921
|
+
var STORM_DEFAULT_SOCIAL_DISCORD = "https://discord.gg/MQ6YVzakM5";
|
|
1922
|
+
var STORM_DEFAULT_SOCIAL_TELEGRAM = "https://t.me/storm_software";
|
|
1923
|
+
var STORM_DEFAULT_SOCIAL_SLACK = "https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA";
|
|
1924
|
+
var STORM_DEFAULT_SOCIAL_MEDIUM = "https://medium.com/storm-software";
|
|
1925
|
+
var STORM_DEFAULT_SOCIAL_GITHUB = "https://github.com/storm-software";
|
|
1926
1926
|
var STORM_DEFAULT_RELEASE_FOOTER = `
|
|
1927
1927
|
Storm Software is an open source software development organization with the mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.
|
|
1928
1928
|
|
|
1929
|
-
Join us on [Discord](${
|
|
1929
|
+
Join us on [Discord](${STORM_DEFAULT_SOCIAL_DISCORD}) to chat with the team, receive release notifications, ask questions, and get involved.
|
|
1930
1930
|
|
|
1931
|
-
If this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](${STORM_DEFAULT_CONTACT}) or join our [Slack](${
|
|
1931
|
+
If this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](${STORM_DEFAULT_CONTACT}) or join our [Slack](${STORM_DEFAULT_SOCIAL_SLACK}) channel!
|
|
1932
1932
|
`;
|
|
1933
1933
|
var STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
|
|
1934
1934
|
|
|
@@ -2046,13 +2046,13 @@ var WorkspaceReleaseConfigSchema = z.object({
|
|
|
2046
2046
|
"A footer message appended to the end of the workspace's release notes"
|
|
2047
2047
|
)
|
|
2048
2048
|
}).describe("The workspace's release config used during the release process");
|
|
2049
|
-
var
|
|
2050
|
-
twitter: z.string().trim().default(
|
|
2051
|
-
discord: z.string().trim().default(
|
|
2052
|
-
telegram: z.string().trim().default(
|
|
2053
|
-
slack: z.string().trim().default(
|
|
2054
|
-
medium: z.string().trim().default(
|
|
2055
|
-
github: z.string().trim().default(
|
|
2049
|
+
var WorkspaceSocialsConfigSchema = z.object({
|
|
2050
|
+
twitter: z.string().trim().default(STORM_DEFAULT_SOCIAL_TWITTER).describe("A Twitter/X account associated with the organization/project"),
|
|
2051
|
+
discord: z.string().trim().default(STORM_DEFAULT_SOCIAL_DISCORD).describe("A Discord account associated with the organization/project"),
|
|
2052
|
+
telegram: z.string().trim().default(STORM_DEFAULT_SOCIAL_TELEGRAM).describe("A Telegram account associated with the organization/project"),
|
|
2053
|
+
slack: z.string().trim().default(STORM_DEFAULT_SOCIAL_SLACK).describe("A Slack account associated with the organization/project"),
|
|
2054
|
+
medium: z.string().trim().default(STORM_DEFAULT_SOCIAL_MEDIUM).describe("A Medium account associated with the organization/project"),
|
|
2055
|
+
github: z.string().trim().default(STORM_DEFAULT_SOCIAL_GITHUB).describe("A GitHub account associated with the organization/project")
|
|
2056
2056
|
}).describe(
|
|
2057
2057
|
"The workspace's account config used to store various social media links"
|
|
2058
2058
|
);
|
|
@@ -2116,13 +2116,10 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
2116
2116
|
owner: z.string().trim().default("@storm-software/admin").describe("The owner of the package"),
|
|
2117
2117
|
bot: WorkspaceBotConfigSchema,
|
|
2118
2118
|
release: WorkspaceReleaseConfigSchema,
|
|
2119
|
-
|
|
2119
|
+
socials: WorkspaceSocialsConfigSchema,
|
|
2120
2120
|
error: errorConfigSchema,
|
|
2121
2121
|
mode: z.enum(["development", "staging", "production"]).default("production").describe("The current runtime environment mode for the package"),
|
|
2122
2122
|
workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
|
|
2123
|
-
externalPackagePatterns: z.array(z.string()).default([]).describe(
|
|
2124
|
-
"The build will use these package patterns to determine if they should be external to the bundle"
|
|
2125
|
-
),
|
|
2126
2123
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
2127
2124
|
directories: WorkspaceDirectoryConfigSchema,
|
|
2128
2125
|
packageManager: z.enum(["npm", "yarn", "pnpm", "bun"]).default("npm").describe(
|
|
@@ -2856,13 +2853,13 @@ var getConfigEnv = () => {
|
|
|
2856
2853
|
codesFile: process.env[`${prefix}ERROR_CODES_FILE`] || void 0,
|
|
2857
2854
|
url: process.env[`${prefix}ERROR_URL`] || void 0
|
|
2858
2855
|
},
|
|
2859
|
-
|
|
2860
|
-
twitter: process.env[`${prefix}
|
|
2861
|
-
discord: process.env[`${prefix}
|
|
2862
|
-
telegram: process.env[`${prefix}
|
|
2863
|
-
slack: process.env[`${prefix}
|
|
2864
|
-
medium: process.env[`${prefix}
|
|
2865
|
-
github: process.env[`${prefix}
|
|
2856
|
+
socials: {
|
|
2857
|
+
twitter: process.env[`${prefix}SOCIAL_TWITTER`] || void 0,
|
|
2858
|
+
discord: process.env[`${prefix}SOCIAL_DISCORD`] || void 0,
|
|
2859
|
+
telegram: process.env[`${prefix}SOCIAL_TELEGRAM`] || void 0,
|
|
2860
|
+
slack: process.env[`${prefix}SOCIAL_SLACK`] || void 0,
|
|
2861
|
+
medium: process.env[`${prefix}SOCIAL_MEDIUM`] || void 0,
|
|
2862
|
+
github: process.env[`${prefix}SOCIAL_GITHUB`] || void 0
|
|
2866
2863
|
},
|
|
2867
2864
|
organization: process.env[`${prefix}ORG`] || process.env[`${prefix}ORGANIZATION`] || process.env[`${prefix}ORG_NAME`] || process.env[`${prefix}ORGANIZATION_NAME`] ? process.env[`${prefix}ORG_DESCRIPTION`] || process.env[`${prefix}ORGANIZATION_DESCRIPTION`] || process.env[`${prefix}ORG_URL`] || process.env[`${prefix}ORGANIZATION_URL`] || process.env[`${prefix}ORG_LOGO`] || process.env[`${prefix}ORGANIZATION_LOGO`] ? {
|
|
2868
2865
|
name: process.env[`${prefix}ORG`] || process.env[`${prefix}ORGANIZATION`] || process.env[`${prefix}ORG_NAME`] || process.env[`${prefix}ORGANIZATION_NAME`],
|
|
@@ -2904,7 +2901,6 @@ var getConfigEnv = () => {
|
|
|
2904
2901
|
repository: process.env[`${prefix}REPOSITORY`] || void 0,
|
|
2905
2902
|
branch: process.env[`${prefix}BRANCH`] || void 0,
|
|
2906
2903
|
preid: process.env[`${prefix}PRE_ID`] || void 0,
|
|
2907
|
-
externalPackagePatterns: process.env[`${prefix}EXTERNAL_PACKAGE_PATTERNS`] ? JSON.parse(process.env[`${prefix}EXTERNAL_PACKAGE_PATTERNS`]) : [],
|
|
2908
2904
|
registry: {
|
|
2909
2905
|
github: process.env[`${prefix}REGISTRY_GITHUB`] || void 0,
|
|
2910
2906
|
npm: process.env[`${prefix}REGISTRY_NPM`] || void 0,
|
|
@@ -3057,24 +3053,24 @@ var setConfigEnv = (config2) => {
|
|
|
3057
3053
|
process.env[`${prefix}RELEASE_HEADER`] = config2.release.header;
|
|
3058
3054
|
process.env[`${prefix}RELEASE_FOOTER`] = config2.release.footer;
|
|
3059
3055
|
}
|
|
3060
|
-
if (config2.
|
|
3061
|
-
if (config2.
|
|
3062
|
-
process.env[`${prefix}
|
|
3056
|
+
if (config2.socials) {
|
|
3057
|
+
if (config2.socials.twitter) {
|
|
3058
|
+
process.env[`${prefix}SOCIAL_TWITTER`] = config2.socials.twitter;
|
|
3063
3059
|
}
|
|
3064
|
-
if (config2.
|
|
3065
|
-
process.env[`${prefix}
|
|
3060
|
+
if (config2.socials.discord) {
|
|
3061
|
+
process.env[`${prefix}SOCIAL_DISCORD`] = config2.socials.discord;
|
|
3066
3062
|
}
|
|
3067
|
-
if (config2.
|
|
3068
|
-
process.env[`${prefix}
|
|
3063
|
+
if (config2.socials.telegram) {
|
|
3064
|
+
process.env[`${prefix}SOCIAL_TELEGRAM`] = config2.socials.telegram;
|
|
3069
3065
|
}
|
|
3070
|
-
if (config2.
|
|
3071
|
-
process.env[`${prefix}
|
|
3066
|
+
if (config2.socials.slack) {
|
|
3067
|
+
process.env[`${prefix}SOCIAL_SLACK`] = config2.socials.slack;
|
|
3072
3068
|
}
|
|
3073
|
-
if (config2.
|
|
3074
|
-
process.env[`${prefix}
|
|
3069
|
+
if (config2.socials.medium) {
|
|
3070
|
+
process.env[`${prefix}SOCIAL_MEDIUM`] = config2.socials.medium;
|
|
3075
3071
|
}
|
|
3076
|
-
if (config2.
|
|
3077
|
-
process.env[`${prefix}
|
|
3072
|
+
if (config2.socials.github) {
|
|
3073
|
+
process.env[`${prefix}SOCIAL_GITHUB`] = config2.socials.github;
|
|
3078
3074
|
}
|
|
3079
3075
|
}
|
|
3080
3076
|
if (config2.organization) {
|
|
@@ -3212,11 +3208,6 @@ var setConfigEnv = (config2) => {
|
|
|
3212
3208
|
if (config2.preid) {
|
|
3213
3209
|
process.env[`${prefix}PRE_ID`] = String(config2.preid);
|
|
3214
3210
|
}
|
|
3215
|
-
if (config2.externalPackagePatterns) {
|
|
3216
|
-
process.env[`${prefix}EXTERNAL_PACKAGE_PATTERNS`] = JSON.stringify(
|
|
3217
|
-
config2.externalPackagePatterns
|
|
3218
|
-
);
|
|
3219
|
-
}
|
|
3220
3211
|
if (config2.registry) {
|
|
3221
3212
|
if (config2.registry.github) {
|
|
3222
3213
|
process.env[`${prefix}REGISTRY_GITHUB`] = String(config2.registry.github);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/eslint",
|
|
3
|
-
"version": "0.160.
|
|
3
|
+
"version": "0.160.14",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing the base ESLint configuration used by Storm Software across many projects.",
|
|
6
6
|
"repository": {
|
|
@@ -162,8 +162,8 @@
|
|
|
162
162
|
"@eslint/eslintrc": "^3.3.1",
|
|
163
163
|
"@eslint/markdown": "^6.6.0",
|
|
164
164
|
"@nx/eslint-plugin": "21.0.3",
|
|
165
|
-
"@storm-software/config": "^1.
|
|
166
|
-
"@storm-software/config-tools": "^1.
|
|
165
|
+
"@storm-software/config": "^1.125.0",
|
|
166
|
+
"@storm-software/config-tools": "^1.176.0",
|
|
167
167
|
"@stylistic/eslint-plugin": "^4.4.1",
|
|
168
168
|
"@typescript-eslint/eslint-plugin": "^8.35.0",
|
|
169
169
|
"@typescript-eslint/parser": "^8.35.0",
|
|
@@ -237,5 +237,5 @@
|
|
|
237
237
|
},
|
|
238
238
|
"publishConfig": { "access": "public" },
|
|
239
239
|
"sideEffects": false,
|
|
240
|
-
"gitHead": "
|
|
240
|
+
"gitHead": "ad894b06738603f70a2ca8858ef1c17d1963cebe"
|
|
241
241
|
}
|