@storm-software/eslint 0.15.2 → 0.16.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/base.js CHANGED
@@ -363391,6 +363391,57 @@ var config2 = {
363391
363391
  };
363392
363392
  var storm_default = config2;
363393
363393
 
363394
+ // packages/eslint/src/utils/format-config.ts
363395
+ var formatConfig = (name, config4 = []) => {
363396
+ return config4.map((config5, index) => {
363397
+ if (!config5 || config5.name) {
363398
+ return config5 ?? {};
363399
+ }
363400
+ return {
363401
+ ...config5,
363402
+ name: `Storm Software (${name}) #${index + 1}`,
363403
+ settings: {
363404
+ "import/resolver": "node",
363405
+ ...config5.settings ?? {}
363406
+ }
363407
+ };
363408
+ });
363409
+ };
363410
+
363411
+ // packages/eslint/src/utils/ignores.ts
363412
+ var ignores = [
363413
+ "**/.git/**",
363414
+ "**/node_modules/**",
363415
+ "**/src/generators/**/files/**/*",
363416
+ "**/dist/**",
363417
+ "**/tmp/**",
363418
+ "**/coverage/**",
363419
+ "**/bench/**",
363420
+ "**/.wrangler/**",
363421
+ "**/.docusaurus/**",
363422
+ "**/.tamagui/**",
363423
+ "**/tamagui.css",
363424
+ "**/.nx/**",
363425
+ "**/.next/**",
363426
+ "**/workbox*.js",
363427
+ "**/sw*.js",
363428
+ "**/service-worker.js",
363429
+ "**/fallback*.js",
363430
+ "**/ios/**",
363431
+ "**/.android/**",
363432
+ "**/.DS_Store/**",
363433
+ "**/Thumbs.db/**",
363434
+ "**/.cspellcache",
363435
+ "**/package-lock.*",
363436
+ "**/npm-lock.*",
363437
+ "**/pnpm-lock.*",
363438
+ "**/pnpm-lock.*",
363439
+ "**/bun.lockb",
363440
+ "**/cargo.lock",
363441
+ "**/next-env.d.ts",
363442
+ "**/CODEOWNERS"
363443
+ ];
363444
+
363394
363445
  // packages/eslint/src/utils/constants.ts
363395
363446
  var RESTRICTED_SYNTAX = [
363396
363447
  {
@@ -363469,57 +363520,6 @@ var CODE_BLOCK = "**/*.md{,x}/*";
363469
363520
  var CODE_FILE = "**/*.{,c,m}{j,t}s{,x}";
363470
363521
  var TS_FILE = "**/*.{,c,m}ts{,x}";
363471
363522
 
363472
- // packages/eslint/src/utils/format-config.ts
363473
- var formatConfig = (name, config4 = []) => {
363474
- return config4.map((config5, index) => {
363475
- if (!config5 || config5.name) {
363476
- return config5 ?? {};
363477
- }
363478
- return {
363479
- ...config5,
363480
- name: `Storm Software (${name}) #${index + 1}`,
363481
- settings: {
363482
- "import/resolver": "node",
363483
- ...config5.settings ?? {}
363484
- }
363485
- };
363486
- });
363487
- };
363488
-
363489
- // packages/eslint/src/utils/ignores.ts
363490
- var ignores = [
363491
- "**/.git/**",
363492
- "**/node_modules/**",
363493
- "**/src/generators/**/files/**/*",
363494
- "**/dist/**",
363495
- "**/tmp/**",
363496
- "**/coverage/**",
363497
- "**/bench/**",
363498
- "**/.wrangler/**",
363499
- "**/.docusaurus/**",
363500
- "**/.tamagui/**",
363501
- "**/tamagui.css",
363502
- "**/.nx/**",
363503
- "**/.next/**",
363504
- "**/workbox*.js",
363505
- "**/sw*.js",
363506
- "**/service-worker.js",
363507
- "**/fallback*.js",
363508
- "**/ios/**",
363509
- "**/.android/**",
363510
- "**/.DS_Store/**",
363511
- "**/Thumbs.db/**",
363512
- "**/.cspellcache",
363513
- "**/package-lock.*",
363514
- "**/npm-lock.*",
363515
- "**/pnpm-lock.*",
363516
- "**/pnpm-lock.*",
363517
- "**/bun.lockb",
363518
- "**/cargo.lock",
363519
- "**/next-env.d.ts",
363520
- "**/CODEOWNERS"
363521
- ];
363522
-
363523
363523
  // packages/eslint/src/base.ts
363524
363524
  var workspaceRoot = findWorkspaceRoot();
363525
363525
  var prettierCompat = new FlatCompat({
package/esm/electron.js CHANGED
@@ -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/graphql.js CHANGED
@@ -496468,6 +496468,57 @@ var config2 = {
496468
496468
  };
496469
496469
  var storm_default = config2;
496470
496470
 
496471
+ // packages/eslint/src/utils/format-config.ts
496472
+ var formatConfig = (name, config5 = []) => {
496473
+ return config5.map((config6, index) => {
496474
+ if (!config6 || config6.name) {
496475
+ return config6 ?? {};
496476
+ }
496477
+ return {
496478
+ ...config6,
496479
+ name: `Storm Software (${name}) #${index + 1}`,
496480
+ settings: {
496481
+ "import/resolver": "node",
496482
+ ...config6.settings ?? {}
496483
+ }
496484
+ };
496485
+ });
496486
+ };
496487
+
496488
+ // packages/eslint/src/utils/ignores.ts
496489
+ var ignores = [
496490
+ "**/.git/**",
496491
+ "**/node_modules/**",
496492
+ "**/src/generators/**/files/**/*",
496493
+ "**/dist/**",
496494
+ "**/tmp/**",
496495
+ "**/coverage/**",
496496
+ "**/bench/**",
496497
+ "**/.wrangler/**",
496498
+ "**/.docusaurus/**",
496499
+ "**/.tamagui/**",
496500
+ "**/tamagui.css",
496501
+ "**/.nx/**",
496502
+ "**/.next/**",
496503
+ "**/workbox*.js",
496504
+ "**/sw*.js",
496505
+ "**/service-worker.js",
496506
+ "**/fallback*.js",
496507
+ "**/ios/**",
496508
+ "**/.android/**",
496509
+ "**/.DS_Store/**",
496510
+ "**/Thumbs.db/**",
496511
+ "**/.cspellcache",
496512
+ "**/package-lock.*",
496513
+ "**/npm-lock.*",
496514
+ "**/pnpm-lock.*",
496515
+ "**/pnpm-lock.*",
496516
+ "**/bun.lockb",
496517
+ "**/cargo.lock",
496518
+ "**/next-env.d.ts",
496519
+ "**/CODEOWNERS"
496520
+ ];
496521
+
496471
496522
  // packages/eslint/src/utils/constants.ts
496472
496523
  var RESTRICTED_SYNTAX = [
496473
496524
  {
@@ -496546,57 +496597,6 @@ var CODE_BLOCK = "**/*.md{,x}/*";
496546
496597
  var CODE_FILE = "**/*.{,c,m}{j,t}s{,x}";
496547
496598
  var TS_FILE = "**/*.{,c,m}ts{,x}";
496548
496599
 
496549
- // packages/eslint/src/utils/format-config.ts
496550
- var formatConfig = (name, config5 = []) => {
496551
- return config5.map((config6, index) => {
496552
- if (!config6 || config6.name) {
496553
- return config6 ?? {};
496554
- }
496555
- return {
496556
- ...config6,
496557
- name: `Storm Software (${name}) #${index + 1}`,
496558
- settings: {
496559
- "import/resolver": "node",
496560
- ...config6.settings ?? {}
496561
- }
496562
- };
496563
- });
496564
- };
496565
-
496566
- // packages/eslint/src/utils/ignores.ts
496567
- var ignores = [
496568
- "**/.git/**",
496569
- "**/node_modules/**",
496570
- "**/src/generators/**/files/**/*",
496571
- "**/dist/**",
496572
- "**/tmp/**",
496573
- "**/coverage/**",
496574
- "**/bench/**",
496575
- "**/.wrangler/**",
496576
- "**/.docusaurus/**",
496577
- "**/.tamagui/**",
496578
- "**/tamagui.css",
496579
- "**/.nx/**",
496580
- "**/.next/**",
496581
- "**/workbox*.js",
496582
- "**/sw*.js",
496583
- "**/service-worker.js",
496584
- "**/fallback*.js",
496585
- "**/ios/**",
496586
- "**/.android/**",
496587
- "**/.DS_Store/**",
496588
- "**/Thumbs.db/**",
496589
- "**/.cspellcache",
496590
- "**/package-lock.*",
496591
- "**/npm-lock.*",
496592
- "**/pnpm-lock.*",
496593
- "**/pnpm-lock.*",
496594
- "**/bun.lockb",
496595
- "**/cargo.lock",
496596
- "**/next-env.d.ts",
496597
- "**/CODEOWNERS"
496598
- ];
496599
-
496600
496600
  // packages/eslint/src/base.ts
496601
496601
  var workspaceRoot = findWorkspaceRoot();
496602
496602
  var prettierCompat = new FlatCompat({
package/esm/index.js CHANGED
@@ -725184,6 +725184,57 @@ var config2 = {
725184
725184
  };
725185
725185
  var storm_default = config2;
725186
725186
 
725187
+ // packages/eslint/src/utils/format-config.ts
725188
+ var formatConfig = (name, config17 = []) => {
725189
+ return config17.map((config18, index) => {
725190
+ if (!config18 || config18.name) {
725191
+ return config18 ?? {};
725192
+ }
725193
+ return {
725194
+ ...config18,
725195
+ name: `Storm Software (${name}) #${index + 1}`,
725196
+ settings: {
725197
+ "import/resolver": "node",
725198
+ ...config18.settings ?? {}
725199
+ }
725200
+ };
725201
+ });
725202
+ };
725203
+
725204
+ // packages/eslint/src/utils/ignores.ts
725205
+ var ignores = [
725206
+ "**/.git/**",
725207
+ "**/node_modules/**",
725208
+ "**/src/generators/**/files/**/*",
725209
+ "**/dist/**",
725210
+ "**/tmp/**",
725211
+ "**/coverage/**",
725212
+ "**/bench/**",
725213
+ "**/.wrangler/**",
725214
+ "**/.docusaurus/**",
725215
+ "**/.tamagui/**",
725216
+ "**/tamagui.css",
725217
+ "**/.nx/**",
725218
+ "**/.next/**",
725219
+ "**/workbox*.js",
725220
+ "**/sw*.js",
725221
+ "**/service-worker.js",
725222
+ "**/fallback*.js",
725223
+ "**/ios/**",
725224
+ "**/.android/**",
725225
+ "**/.DS_Store/**",
725226
+ "**/Thumbs.db/**",
725227
+ "**/.cspellcache",
725228
+ "**/package-lock.*",
725229
+ "**/npm-lock.*",
725230
+ "**/pnpm-lock.*",
725231
+ "**/pnpm-lock.*",
725232
+ "**/bun.lockb",
725233
+ "**/cargo.lock",
725234
+ "**/next-env.d.ts",
725235
+ "**/CODEOWNERS"
725236
+ ];
725237
+
725187
725238
  // packages/eslint/src/utils/constants.ts
725188
725239
  var RESTRICTED_SYNTAX = [
725189
725240
  {
@@ -725262,57 +725313,6 @@ var CODE_BLOCK = "**/*.md{,x}/*";
725262
725313
  var CODE_FILE = "**/*.{,c,m}{j,t}s{,x}";
725263
725314
  var TS_FILE = "**/*.{,c,m}ts{,x}";
725264
725315
 
725265
- // packages/eslint/src/utils/format-config.ts
725266
- var formatConfig = (name, config17 = []) => {
725267
- return config17.map((config18, index) => {
725268
- if (!config18 || config18.name) {
725269
- return config18 ?? {};
725270
- }
725271
- return {
725272
- ...config18,
725273
- name: `Storm Software (${name}) #${index + 1}`,
725274
- settings: {
725275
- "import/resolver": "node",
725276
- ...config18.settings ?? {}
725277
- }
725278
- };
725279
- });
725280
- };
725281
-
725282
- // packages/eslint/src/utils/ignores.ts
725283
- var ignores = [
725284
- "**/.git/**",
725285
- "**/node_modules/**",
725286
- "**/src/generators/**/files/**/*",
725287
- "**/dist/**",
725288
- "**/tmp/**",
725289
- "**/coverage/**",
725290
- "**/bench/**",
725291
- "**/.wrangler/**",
725292
- "**/.docusaurus/**",
725293
- "**/.tamagui/**",
725294
- "**/tamagui.css",
725295
- "**/.nx/**",
725296
- "**/.next/**",
725297
- "**/workbox*.js",
725298
- "**/sw*.js",
725299
- "**/service-worker.js",
725300
- "**/fallback*.js",
725301
- "**/ios/**",
725302
- "**/.android/**",
725303
- "**/.DS_Store/**",
725304
- "**/Thumbs.db/**",
725305
- "**/.cspellcache",
725306
- "**/package-lock.*",
725307
- "**/npm-lock.*",
725308
- "**/pnpm-lock.*",
725309
- "**/pnpm-lock.*",
725310
- "**/bun.lockb",
725311
- "**/cargo.lock",
725312
- "**/next-env.d.ts",
725313
- "**/CODEOWNERS"
725314
- ];
725315
-
725316
725316
  // packages/eslint/src/base.ts
725317
725317
  var workspaceRoot = findWorkspaceRoot();
725318
725318
  var prettierCompat = new FlatCompat({
package/esm/json.js CHANGED
@@ -381688,6 +381688,57 @@ var config2 = {
381688
381688
  };
381689
381689
  var storm_default = config2;
381690
381690
 
381691
+ // packages/eslint/src/utils/format-config.ts
381692
+ var formatConfig = (name, config5 = []) => {
381693
+ return config5.map((config6, index) => {
381694
+ if (!config6 || config6.name) {
381695
+ return config6 ?? {};
381696
+ }
381697
+ return {
381698
+ ...config6,
381699
+ name: `Storm Software (${name}) #${index + 1}`,
381700
+ settings: {
381701
+ "import/resolver": "node",
381702
+ ...config6.settings ?? {}
381703
+ }
381704
+ };
381705
+ });
381706
+ };
381707
+
381708
+ // packages/eslint/src/utils/ignores.ts
381709
+ var ignores = [
381710
+ "**/.git/**",
381711
+ "**/node_modules/**",
381712
+ "**/src/generators/**/files/**/*",
381713
+ "**/dist/**",
381714
+ "**/tmp/**",
381715
+ "**/coverage/**",
381716
+ "**/bench/**",
381717
+ "**/.wrangler/**",
381718
+ "**/.docusaurus/**",
381719
+ "**/.tamagui/**",
381720
+ "**/tamagui.css",
381721
+ "**/.nx/**",
381722
+ "**/.next/**",
381723
+ "**/workbox*.js",
381724
+ "**/sw*.js",
381725
+ "**/service-worker.js",
381726
+ "**/fallback*.js",
381727
+ "**/ios/**",
381728
+ "**/.android/**",
381729
+ "**/.DS_Store/**",
381730
+ "**/Thumbs.db/**",
381731
+ "**/.cspellcache",
381732
+ "**/package-lock.*",
381733
+ "**/npm-lock.*",
381734
+ "**/pnpm-lock.*",
381735
+ "**/pnpm-lock.*",
381736
+ "**/bun.lockb",
381737
+ "**/cargo.lock",
381738
+ "**/next-env.d.ts",
381739
+ "**/CODEOWNERS"
381740
+ ];
381741
+
381691
381742
  // packages/eslint/src/utils/constants.ts
381692
381743
  var RESTRICTED_SYNTAX = [
381693
381744
  {
@@ -381766,57 +381817,6 @@ var CODE_BLOCK = "**/*.md{,x}/*";
381766
381817
  var CODE_FILE = "**/*.{,c,m}{j,t}s{,x}";
381767
381818
  var TS_FILE = "**/*.{,c,m}ts{,x}";
381768
381819
 
381769
- // packages/eslint/src/utils/format-config.ts
381770
- var formatConfig = (name, config5 = []) => {
381771
- return config5.map((config6, index) => {
381772
- if (!config6 || config6.name) {
381773
- return config6 ?? {};
381774
- }
381775
- return {
381776
- ...config6,
381777
- name: `Storm Software (${name}) #${index + 1}`,
381778
- settings: {
381779
- "import/resolver": "node",
381780
- ...config6.settings ?? {}
381781
- }
381782
- };
381783
- });
381784
- };
381785
-
381786
- // packages/eslint/src/utils/ignores.ts
381787
- var ignores = [
381788
- "**/.git/**",
381789
- "**/node_modules/**",
381790
- "**/src/generators/**/files/**/*",
381791
- "**/dist/**",
381792
- "**/tmp/**",
381793
- "**/coverage/**",
381794
- "**/bench/**",
381795
- "**/.wrangler/**",
381796
- "**/.docusaurus/**",
381797
- "**/.tamagui/**",
381798
- "**/tamagui.css",
381799
- "**/.nx/**",
381800
- "**/.next/**",
381801
- "**/workbox*.js",
381802
- "**/sw*.js",
381803
- "**/service-worker.js",
381804
- "**/fallback*.js",
381805
- "**/ios/**",
381806
- "**/.android/**",
381807
- "**/.DS_Store/**",
381808
- "**/Thumbs.db/**",
381809
- "**/.cspellcache",
381810
- "**/package-lock.*",
381811
- "**/npm-lock.*",
381812
- "**/pnpm-lock.*",
381813
- "**/pnpm-lock.*",
381814
- "**/bun.lockb",
381815
- "**/cargo.lock",
381816
- "**/next-env.d.ts",
381817
- "**/CODEOWNERS"
381818
- ];
381819
-
381820
381820
  // packages/eslint/src/base.ts
381821
381821
  var workspaceRoot = findWorkspaceRoot();
381822
381822
  var prettierCompat = new FlatCompat({
package/esm/markdown.js CHANGED
@@ -373038,6 +373038,57 @@ var config2 = {
373038
373038
  };
373039
373039
  var storm_default = config2;
373040
373040
 
373041
+ // packages/eslint/src/utils/format-config.ts
373042
+ var formatConfig = (name, config5 = []) => {
373043
+ return config5.map((config6, index) => {
373044
+ if (!config6 || config6.name) {
373045
+ return config6 ?? {};
373046
+ }
373047
+ return {
373048
+ ...config6,
373049
+ name: `Storm Software (${name}) #${index + 1}`,
373050
+ settings: {
373051
+ "import/resolver": "node",
373052
+ ...config6.settings ?? {}
373053
+ }
373054
+ };
373055
+ });
373056
+ };
373057
+
373058
+ // packages/eslint/src/utils/ignores.ts
373059
+ var ignores = [
373060
+ "**/.git/**",
373061
+ "**/node_modules/**",
373062
+ "**/src/generators/**/files/**/*",
373063
+ "**/dist/**",
373064
+ "**/tmp/**",
373065
+ "**/coverage/**",
373066
+ "**/bench/**",
373067
+ "**/.wrangler/**",
373068
+ "**/.docusaurus/**",
373069
+ "**/.tamagui/**",
373070
+ "**/tamagui.css",
373071
+ "**/.nx/**",
373072
+ "**/.next/**",
373073
+ "**/workbox*.js",
373074
+ "**/sw*.js",
373075
+ "**/service-worker.js",
373076
+ "**/fallback*.js",
373077
+ "**/ios/**",
373078
+ "**/.android/**",
373079
+ "**/.DS_Store/**",
373080
+ "**/Thumbs.db/**",
373081
+ "**/.cspellcache",
373082
+ "**/package-lock.*",
373083
+ "**/npm-lock.*",
373084
+ "**/pnpm-lock.*",
373085
+ "**/pnpm-lock.*",
373086
+ "**/bun.lockb",
373087
+ "**/cargo.lock",
373088
+ "**/next-env.d.ts",
373089
+ "**/CODEOWNERS"
373090
+ ];
373091
+
373041
373092
  // packages/eslint/src/utils/constants.ts
373042
373093
  var RESTRICTED_SYNTAX = [
373043
373094
  {
@@ -373116,57 +373167,6 @@ var CODE_BLOCK = "**/*.md{,x}/*";
373116
373167
  var CODE_FILE = "**/*.{,c,m}{j,t}s{,x}";
373117
373168
  var TS_FILE = "**/*.{,c,m}ts{,x}";
373118
373169
 
373119
- // packages/eslint/src/utils/format-config.ts
373120
- var formatConfig = (name, config5 = []) => {
373121
- return config5.map((config6, index) => {
373122
- if (!config6 || config6.name) {
373123
- return config6 ?? {};
373124
- }
373125
- return {
373126
- ...config6,
373127
- name: `Storm Software (${name}) #${index + 1}`,
373128
- settings: {
373129
- "import/resolver": "node",
373130
- ...config6.settings ?? {}
373131
- }
373132
- };
373133
- });
373134
- };
373135
-
373136
- // packages/eslint/src/utils/ignores.ts
373137
- var ignores = [
373138
- "**/.git/**",
373139
- "**/node_modules/**",
373140
- "**/src/generators/**/files/**/*",
373141
- "**/dist/**",
373142
- "**/tmp/**",
373143
- "**/coverage/**",
373144
- "**/bench/**",
373145
- "**/.wrangler/**",
373146
- "**/.docusaurus/**",
373147
- "**/.tamagui/**",
373148
- "**/tamagui.css",
373149
- "**/.nx/**",
373150
- "**/.next/**",
373151
- "**/workbox*.js",
373152
- "**/sw*.js",
373153
- "**/service-worker.js",
373154
- "**/fallback*.js",
373155
- "**/ios/**",
373156
- "**/.android/**",
373157
- "**/.DS_Store/**",
373158
- "**/Thumbs.db/**",
373159
- "**/.cspellcache",
373160
- "**/package-lock.*",
373161
- "**/npm-lock.*",
373162
- "**/pnpm-lock.*",
373163
- "**/pnpm-lock.*",
373164
- "**/bun.lockb",
373165
- "**/cargo.lock",
373166
- "**/next-env.d.ts",
373167
- "**/CODEOWNERS"
373168
- ];
373169
-
373170
373170
  // packages/eslint/src/base.ts
373171
373171
  var workspaceRoot = findWorkspaceRoot();
373172
373172
  var prettierCompat = new FlatCompat({