@storm-software/eslint 0.15.2 → 0.17.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/esm/next.js CHANGED
@@ -547187,6 +547187,57 @@ var config2 = {
547187
547187
  };
547188
547188
  var storm_default = config2;
547189
547189
 
547190
+ // packages/eslint/src/utils/format-config.ts
547191
+ var formatConfig = (name, config9 = []) => {
547192
+ return config9.map((config10, index) => {
547193
+ if (!config10 || config10.name) {
547194
+ return config10 ?? {};
547195
+ }
547196
+ return {
547197
+ ...config10,
547198
+ name: `Storm Software (${name}) #${index + 1}`,
547199
+ settings: {
547200
+ "import/resolver": "node",
547201
+ ...config10.settings ?? {}
547202
+ }
547203
+ };
547204
+ });
547205
+ };
547206
+
547207
+ // packages/eslint/src/utils/ignores.ts
547208
+ var ignores = [
547209
+ "**/.git/**",
547210
+ "**/node_modules/**",
547211
+ "**/src/generators/**/files/**/*",
547212
+ "**/dist/**",
547213
+ "**/tmp/**",
547214
+ "**/coverage/**",
547215
+ "**/bench/**",
547216
+ "**/.wrangler/**",
547217
+ "**/.docusaurus/**",
547218
+ "**/.tamagui/**",
547219
+ "**/tamagui.css",
547220
+ "**/.nx/**",
547221
+ "**/.next/**",
547222
+ "**/workbox*.js",
547223
+ "**/sw*.js",
547224
+ "**/service-worker.js",
547225
+ "**/fallback*.js",
547226
+ "**/ios/**",
547227
+ "**/.android/**",
547228
+ "**/.DS_Store/**",
547229
+ "**/Thumbs.db/**",
547230
+ "**/.cspellcache",
547231
+ "**/package-lock.*",
547232
+ "**/npm-lock.*",
547233
+ "**/pnpm-lock.*",
547234
+ "**/pnpm-lock.*",
547235
+ "**/bun.lockb",
547236
+ "**/cargo.lock",
547237
+ "**/next-env.d.ts",
547238
+ "**/CODEOWNERS"
547239
+ ];
547240
+
547190
547241
  // packages/eslint/src/utils/constants.ts
547191
547242
  var RESTRICTED_SYNTAX = [
547192
547243
  {
@@ -547265,57 +547316,6 @@ var CODE_BLOCK = "**/*.md{,x}/*";
547265
547316
  var CODE_FILE = "**/*.{,c,m}{j,t}s{,x}";
547266
547317
  var TS_FILE = "**/*.{,c,m}ts{,x}";
547267
547318
 
547268
- // packages/eslint/src/utils/format-config.ts
547269
- var formatConfig = (name, config9 = []) => {
547270
- return config9.map((config10, index) => {
547271
- if (!config10 || config10.name) {
547272
- return config10 ?? {};
547273
- }
547274
- return {
547275
- ...config10,
547276
- name: `Storm Software (${name}) #${index + 1}`,
547277
- settings: {
547278
- "import/resolver": "node",
547279
- ...config10.settings ?? {}
547280
- }
547281
- };
547282
- });
547283
- };
547284
-
547285
- // packages/eslint/src/utils/ignores.ts
547286
- var ignores = [
547287
- "**/.git/**",
547288
- "**/node_modules/**",
547289
- "**/src/generators/**/files/**/*",
547290
- "**/dist/**",
547291
- "**/tmp/**",
547292
- "**/coverage/**",
547293
- "**/bench/**",
547294
- "**/.wrangler/**",
547295
- "**/.docusaurus/**",
547296
- "**/.tamagui/**",
547297
- "**/tamagui.css",
547298
- "**/.nx/**",
547299
- "**/.next/**",
547300
- "**/workbox*.js",
547301
- "**/sw*.js",
547302
- "**/service-worker.js",
547303
- "**/fallback*.js",
547304
- "**/ios/**",
547305
- "**/.android/**",
547306
- "**/.DS_Store/**",
547307
- "**/Thumbs.db/**",
547308
- "**/.cspellcache",
547309
- "**/package-lock.*",
547310
- "**/npm-lock.*",
547311
- "**/pnpm-lock.*",
547312
- "**/pnpm-lock.*",
547313
- "**/bun.lockb",
547314
- "**/cargo.lock",
547315
- "**/next-env.d.ts",
547316
- "**/CODEOWNERS"
547317
- ];
547318
-
547319
547319
  // packages/eslint/src/base.ts
547320
547320
  var workspaceRoot = findWorkspaceRoot();
547321
547321
  var prettierCompat = new FlatCompat({
package/esm/nx.js CHANGED
@@ -363393,6 +363393,57 @@ var config2 = {
363393
363393
  };
363394
363394
  var storm_default = config2;
363395
363395
 
363396
+ // packages/eslint/src/utils/format-config.ts
363397
+ var formatConfig = (name, config5 = []) => {
363398
+ return config5.map((config6, index) => {
363399
+ if (!config6 || config6.name) {
363400
+ return config6 ?? {};
363401
+ }
363402
+ return {
363403
+ ...config6,
363404
+ name: `Storm Software (${name}) #${index + 1}`,
363405
+ settings: {
363406
+ "import/resolver": "node",
363407
+ ...config6.settings ?? {}
363408
+ }
363409
+ };
363410
+ });
363411
+ };
363412
+
363413
+ // packages/eslint/src/utils/ignores.ts
363414
+ var ignores = [
363415
+ "**/.git/**",
363416
+ "**/node_modules/**",
363417
+ "**/src/generators/**/files/**/*",
363418
+ "**/dist/**",
363419
+ "**/tmp/**",
363420
+ "**/coverage/**",
363421
+ "**/bench/**",
363422
+ "**/.wrangler/**",
363423
+ "**/.docusaurus/**",
363424
+ "**/.tamagui/**",
363425
+ "**/tamagui.css",
363426
+ "**/.nx/**",
363427
+ "**/.next/**",
363428
+ "**/workbox*.js",
363429
+ "**/sw*.js",
363430
+ "**/service-worker.js",
363431
+ "**/fallback*.js",
363432
+ "**/ios/**",
363433
+ "**/.android/**",
363434
+ "**/.DS_Store/**",
363435
+ "**/Thumbs.db/**",
363436
+ "**/.cspellcache",
363437
+ "**/package-lock.*",
363438
+ "**/npm-lock.*",
363439
+ "**/pnpm-lock.*",
363440
+ "**/pnpm-lock.*",
363441
+ "**/bun.lockb",
363442
+ "**/cargo.lock",
363443
+ "**/next-env.d.ts",
363444
+ "**/CODEOWNERS"
363445
+ ];
363446
+
363396
363447
  // packages/eslint/src/utils/constants.ts
363397
363448
  var RESTRICTED_SYNTAX = [
363398
363449
  {
@@ -363471,57 +363522,6 @@ var CODE_BLOCK = "**/*.md{,x}/*";
363471
363522
  var CODE_FILE = "**/*.{,c,m}{j,t}s{,x}";
363472
363523
  var TS_FILE = "**/*.{,c,m}ts{,x}";
363473
363524
 
363474
- // packages/eslint/src/utils/format-config.ts
363475
- var formatConfig = (name, config5 = []) => {
363476
- return config5.map((config6, index) => {
363477
- if (!config6 || config6.name) {
363478
- return config6 ?? {};
363479
- }
363480
- return {
363481
- ...config6,
363482
- name: `Storm Software (${name}) #${index + 1}`,
363483
- settings: {
363484
- "import/resolver": "node",
363485
- ...config6.settings ?? {}
363486
- }
363487
- };
363488
- });
363489
- };
363490
-
363491
- // packages/eslint/src/utils/ignores.ts
363492
- var ignores = [
363493
- "**/.git/**",
363494
- "**/node_modules/**",
363495
- "**/src/generators/**/files/**/*",
363496
- "**/dist/**",
363497
- "**/tmp/**",
363498
- "**/coverage/**",
363499
- "**/bench/**",
363500
- "**/.wrangler/**",
363501
- "**/.docusaurus/**",
363502
- "**/.tamagui/**",
363503
- "**/tamagui.css",
363504
- "**/.nx/**",
363505
- "**/.next/**",
363506
- "**/workbox*.js",
363507
- "**/sw*.js",
363508
- "**/service-worker.js",
363509
- "**/fallback*.js",
363510
- "**/ios/**",
363511
- "**/.android/**",
363512
- "**/.DS_Store/**",
363513
- "**/Thumbs.db/**",
363514
- "**/.cspellcache",
363515
- "**/package-lock.*",
363516
- "**/npm-lock.*",
363517
- "**/pnpm-lock.*",
363518
- "**/pnpm-lock.*",
363519
- "**/bun.lockb",
363520
- "**/cargo.lock",
363521
- "**/next-env.d.ts",
363522
- "**/CODEOWNERS"
363523
- ];
363524
-
363525
363525
  // packages/eslint/src/base.ts
363526
363526
  var workspaceRoot = findWorkspaceRoot();
363527
363527
  var prettierCompat = new FlatCompat({
@@ -363394,6 +363394,57 @@ var config2 = {
363394
363394
  };
363395
363395
  var storm_default = config2;
363396
363396
 
363397
+ // packages/eslint/src/utils/format-config.ts
363398
+ var formatConfig = (name, config5 = []) => {
363399
+ return config5.map((config6, index) => {
363400
+ if (!config6 || config6.name) {
363401
+ return config6 ?? {};
363402
+ }
363403
+ return {
363404
+ ...config6,
363405
+ name: `Storm Software (${name}) #${index + 1}`,
363406
+ settings: {
363407
+ "import/resolver": "node",
363408
+ ...config6.settings ?? {}
363409
+ }
363410
+ };
363411
+ });
363412
+ };
363413
+
363414
+ // packages/eslint/src/utils/ignores.ts
363415
+ var ignores = [
363416
+ "**/.git/**",
363417
+ "**/node_modules/**",
363418
+ "**/src/generators/**/files/**/*",
363419
+ "**/dist/**",
363420
+ "**/tmp/**",
363421
+ "**/coverage/**",
363422
+ "**/bench/**",
363423
+ "**/.wrangler/**",
363424
+ "**/.docusaurus/**",
363425
+ "**/.tamagui/**",
363426
+ "**/tamagui.css",
363427
+ "**/.nx/**",
363428
+ "**/.next/**",
363429
+ "**/workbox*.js",
363430
+ "**/sw*.js",
363431
+ "**/service-worker.js",
363432
+ "**/fallback*.js",
363433
+ "**/ios/**",
363434
+ "**/.android/**",
363435
+ "**/.DS_Store/**",
363436
+ "**/Thumbs.db/**",
363437
+ "**/.cspellcache",
363438
+ "**/package-lock.*",
363439
+ "**/npm-lock.*",
363440
+ "**/pnpm-lock.*",
363441
+ "**/pnpm-lock.*",
363442
+ "**/bun.lockb",
363443
+ "**/cargo.lock",
363444
+ "**/next-env.d.ts",
363445
+ "**/CODEOWNERS"
363446
+ ];
363447
+
363397
363448
  // packages/eslint/src/utils/constants.ts
363398
363449
  var RESTRICTED_SYNTAX = [
363399
363450
  {
@@ -363472,57 +363523,6 @@ var CODE_BLOCK = "**/*.md{,x}/*";
363472
363523
  var CODE_FILE = "**/*.{,c,m}{j,t}s{,x}";
363473
363524
  var TS_FILE = "**/*.{,c,m}ts{,x}";
363474
363525
 
363475
- // packages/eslint/src/utils/format-config.ts
363476
- var formatConfig = (name, config5 = []) => {
363477
- return config5.map((config6, index) => {
363478
- if (!config6 || config6.name) {
363479
- return config6 ?? {};
363480
- }
363481
- return {
363482
- ...config6,
363483
- name: `Storm Software (${name}) #${index + 1}`,
363484
- settings: {
363485
- "import/resolver": "node",
363486
- ...config6.settings ?? {}
363487
- }
363488
- };
363489
- });
363490
- };
363491
-
363492
- // packages/eslint/src/utils/ignores.ts
363493
- var ignores = [
363494
- "**/.git/**",
363495
- "**/node_modules/**",
363496
- "**/src/generators/**/files/**/*",
363497
- "**/dist/**",
363498
- "**/tmp/**",
363499
- "**/coverage/**",
363500
- "**/bench/**",
363501
- "**/.wrangler/**",
363502
- "**/.docusaurus/**",
363503
- "**/.tamagui/**",
363504
- "**/tamagui.css",
363505
- "**/.nx/**",
363506
- "**/.next/**",
363507
- "**/workbox*.js",
363508
- "**/sw*.js",
363509
- "**/service-worker.js",
363510
- "**/fallback*.js",
363511
- "**/ios/**",
363512
- "**/.android/**",
363513
- "**/.DS_Store/**",
363514
- "**/Thumbs.db/**",
363515
- "**/.cspellcache",
363516
- "**/package-lock.*",
363517
- "**/npm-lock.*",
363518
- "**/pnpm-lock.*",
363519
- "**/pnpm-lock.*",
363520
- "**/bun.lockb",
363521
- "**/cargo.lock",
363522
- "**/next-env.d.ts",
363523
- "**/CODEOWNERS"
363524
- ];
363525
-
363526
363526
  // packages/eslint/src/base.ts
363527
363527
  var workspaceRoot = findWorkspaceRoot();
363528
363528
  var prettierCompat = new FlatCompat({
package/esm/react.js CHANGED
@@ -540066,6 +540066,57 @@ var config2 = {
540066
540066
  };
540067
540067
  var storm_default = config2;
540068
540068
 
540069
+ // packages/eslint/src/utils/format-config.ts
540070
+ var formatConfig = (name, config8 = []) => {
540071
+ return config8.map((config9, index) => {
540072
+ if (!config9 || config9.name) {
540073
+ return config9 ?? {};
540074
+ }
540075
+ return {
540076
+ ...config9,
540077
+ name: `Storm Software (${name}) #${index + 1}`,
540078
+ settings: {
540079
+ "import/resolver": "node",
540080
+ ...config9.settings ?? {}
540081
+ }
540082
+ };
540083
+ });
540084
+ };
540085
+
540086
+ // packages/eslint/src/utils/ignores.ts
540087
+ var ignores = [
540088
+ "**/.git/**",
540089
+ "**/node_modules/**",
540090
+ "**/src/generators/**/files/**/*",
540091
+ "**/dist/**",
540092
+ "**/tmp/**",
540093
+ "**/coverage/**",
540094
+ "**/bench/**",
540095
+ "**/.wrangler/**",
540096
+ "**/.docusaurus/**",
540097
+ "**/.tamagui/**",
540098
+ "**/tamagui.css",
540099
+ "**/.nx/**",
540100
+ "**/.next/**",
540101
+ "**/workbox*.js",
540102
+ "**/sw*.js",
540103
+ "**/service-worker.js",
540104
+ "**/fallback*.js",
540105
+ "**/ios/**",
540106
+ "**/.android/**",
540107
+ "**/.DS_Store/**",
540108
+ "**/Thumbs.db/**",
540109
+ "**/.cspellcache",
540110
+ "**/package-lock.*",
540111
+ "**/npm-lock.*",
540112
+ "**/pnpm-lock.*",
540113
+ "**/pnpm-lock.*",
540114
+ "**/bun.lockb",
540115
+ "**/cargo.lock",
540116
+ "**/next-env.d.ts",
540117
+ "**/CODEOWNERS"
540118
+ ];
540119
+
540069
540120
  // packages/eslint/src/utils/constants.ts
540070
540121
  var RESTRICTED_SYNTAX = [
540071
540122
  {
@@ -540144,57 +540195,6 @@ var CODE_BLOCK = "**/*.md{,x}/*";
540144
540195
  var CODE_FILE = "**/*.{,c,m}{j,t}s{,x}";
540145
540196
  var TS_FILE = "**/*.{,c,m}ts{,x}";
540146
540197
 
540147
- // packages/eslint/src/utils/format-config.ts
540148
- var formatConfig = (name, config8 = []) => {
540149
- return config8.map((config9, index) => {
540150
- if (!config9 || config9.name) {
540151
- return config9 ?? {};
540152
- }
540153
- return {
540154
- ...config9,
540155
- name: `Storm Software (${name}) #${index + 1}`,
540156
- settings: {
540157
- "import/resolver": "node",
540158
- ...config9.settings ?? {}
540159
- }
540160
- };
540161
- });
540162
- };
540163
-
540164
- // packages/eslint/src/utils/ignores.ts
540165
- var ignores = [
540166
- "**/.git/**",
540167
- "**/node_modules/**",
540168
- "**/src/generators/**/files/**/*",
540169
- "**/dist/**",
540170
- "**/tmp/**",
540171
- "**/coverage/**",
540172
- "**/bench/**",
540173
- "**/.wrangler/**",
540174
- "**/.docusaurus/**",
540175
- "**/.tamagui/**",
540176
- "**/tamagui.css",
540177
- "**/.nx/**",
540178
- "**/.next/**",
540179
- "**/workbox*.js",
540180
- "**/sw*.js",
540181
- "**/service-worker.js",
540182
- "**/fallback*.js",
540183
- "**/ios/**",
540184
- "**/.android/**",
540185
- "**/.DS_Store/**",
540186
- "**/Thumbs.db/**",
540187
- "**/.cspellcache",
540188
- "**/package-lock.*",
540189
- "**/npm-lock.*",
540190
- "**/pnpm-lock.*",
540191
- "**/pnpm-lock.*",
540192
- "**/bun.lockb",
540193
- "**/cargo.lock",
540194
- "**/next-env.d.ts",
540195
- "**/CODEOWNERS"
540196
- ];
540197
-
540198
540198
  // packages/eslint/src/base.ts
540199
540199
  var workspaceRoot = findWorkspaceRoot();
540200
540200
  var prettierCompat = new FlatCompat({
package/esm/yml.js CHANGED
@@ -383851,6 +383851,57 @@ var config2 = {
383851
383851
  };
383852
383852
  var storm_default = config2;
383853
383853
 
383854
+ // packages/eslint/src/utils/format-config.ts
383855
+ var formatConfig = (name, config5 = []) => {
383856
+ return config5.map((config6, index) => {
383857
+ if (!config6 || config6.name) {
383858
+ return config6 ?? {};
383859
+ }
383860
+ return {
383861
+ ...config6,
383862
+ name: `Storm Software (${name}) #${index + 1}`,
383863
+ settings: {
383864
+ "import/resolver": "node",
383865
+ ...config6.settings ?? {}
383866
+ }
383867
+ };
383868
+ });
383869
+ };
383870
+
383871
+ // packages/eslint/src/utils/ignores.ts
383872
+ var ignores = [
383873
+ "**/.git/**",
383874
+ "**/node_modules/**",
383875
+ "**/src/generators/**/files/**/*",
383876
+ "**/dist/**",
383877
+ "**/tmp/**",
383878
+ "**/coverage/**",
383879
+ "**/bench/**",
383880
+ "**/.wrangler/**",
383881
+ "**/.docusaurus/**",
383882
+ "**/.tamagui/**",
383883
+ "**/tamagui.css",
383884
+ "**/.nx/**",
383885
+ "**/.next/**",
383886
+ "**/workbox*.js",
383887
+ "**/sw*.js",
383888
+ "**/service-worker.js",
383889
+ "**/fallback*.js",
383890
+ "**/ios/**",
383891
+ "**/.android/**",
383892
+ "**/.DS_Store/**",
383893
+ "**/Thumbs.db/**",
383894
+ "**/.cspellcache",
383895
+ "**/package-lock.*",
383896
+ "**/npm-lock.*",
383897
+ "**/pnpm-lock.*",
383898
+ "**/pnpm-lock.*",
383899
+ "**/bun.lockb",
383900
+ "**/cargo.lock",
383901
+ "**/next-env.d.ts",
383902
+ "**/CODEOWNERS"
383903
+ ];
383904
+
383854
383905
  // packages/eslint/src/utils/constants.ts
383855
383906
  var RESTRICTED_SYNTAX = [
383856
383907
  {
@@ -383929,57 +383980,6 @@ var CODE_BLOCK = "**/*.md{,x}/*";
383929
383980
  var CODE_FILE = "**/*.{,c,m}{j,t}s{,x}";
383930
383981
  var TS_FILE = "**/*.{,c,m}ts{,x}";
383931
383982
 
383932
- // packages/eslint/src/utils/format-config.ts
383933
- var formatConfig = (name, config5 = []) => {
383934
- return config5.map((config6, index) => {
383935
- if (!config6 || config6.name) {
383936
- return config6 ?? {};
383937
- }
383938
- return {
383939
- ...config6,
383940
- name: `Storm Software (${name}) #${index + 1}`,
383941
- settings: {
383942
- "import/resolver": "node",
383943
- ...config6.settings ?? {}
383944
- }
383945
- };
383946
- });
383947
- };
383948
-
383949
- // packages/eslint/src/utils/ignores.ts
383950
- var ignores = [
383951
- "**/.git/**",
383952
- "**/node_modules/**",
383953
- "**/src/generators/**/files/**/*",
383954
- "**/dist/**",
383955
- "**/tmp/**",
383956
- "**/coverage/**",
383957
- "**/bench/**",
383958
- "**/.wrangler/**",
383959
- "**/.docusaurus/**",
383960
- "**/.tamagui/**",
383961
- "**/tamagui.css",
383962
- "**/.nx/**",
383963
- "**/.next/**",
383964
- "**/workbox*.js",
383965
- "**/sw*.js",
383966
- "**/service-worker.js",
383967
- "**/fallback*.js",
383968
- "**/ios/**",
383969
- "**/.android/**",
383970
- "**/.DS_Store/**",
383971
- "**/Thumbs.db/**",
383972
- "**/.cspellcache",
383973
- "**/package-lock.*",
383974
- "**/npm-lock.*",
383975
- "**/pnpm-lock.*",
383976
- "**/pnpm-lock.*",
383977
- "**/bun.lockb",
383978
- "**/cargo.lock",
383979
- "**/next-env.d.ts",
383980
- "**/CODEOWNERS"
383981
- ];
383982
-
383983
383983
  // packages/eslint/src/base.ts
383984
383984
  var workspaceRoot = findWorkspaceRoot();
383985
383985
  var prettierCompat = new FlatCompat({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/eslint",
3
- "version": "0.15.2",
3
+ "version": "0.17.0",
4
4
  "type": "module",
5
5
  "description": "⚡ A package containing the base ESLint configuration used by Storm Software across many projects.",
6
6
  "repository": {