@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/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## 0.17.0 (2024-06-26)
2
+
3
+
4
+ ### πŸš€ Features
5
+
6
+ - **eslint-plugin:** Bundle storm software packages ([f2daca8c](https://github.com/storm-software/storm-ops/commit/f2daca8c))
7
+
8
+ ## 0.16.0 (2024-06-24)
9
+
10
+
11
+ ### πŸš€ Features
12
+
13
+ - **eslint:** Added back `nx` and removed `recommended` base configurations ([1661bde9](https://github.com/storm-software/storm-ops/commit/1661bde9))
14
+
1
15
  ## 0.15.2 (2024-06-24)
2
16
 
3
17
  ### 🩹 Fixes
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.15.1-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
24
+ [![Version](https://img.shields.io/badge/version-0.15.2-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
25
25
  [![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 docusaurus](https://img.shields.io/badge/documented_with-docusaurus-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://docusaurus.io/)&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)
26
26
 
27
27
  > [!IMPORTANT]
package/cjs/base.cjs CHANGED
@@ -363321,6 +363321,57 @@ var config2 = {
363321
363321
  };
363322
363322
  var storm_default = config2;
363323
363323
 
363324
+ // packages/eslint/src/utils/format-config.ts
363325
+ var formatConfig = (name, config4 = []) => {
363326
+ return config4.map((config5, index) => {
363327
+ if (!config5 || config5.name) {
363328
+ return config5 ?? {};
363329
+ }
363330
+ return {
363331
+ ...config5,
363332
+ name: `Storm Software (${name}) #${index + 1}`,
363333
+ settings: {
363334
+ "import/resolver": "node",
363335
+ ...config5.settings ?? {}
363336
+ }
363337
+ };
363338
+ });
363339
+ };
363340
+
363341
+ // packages/eslint/src/utils/ignores.ts
363342
+ var ignores = [
363343
+ "**/.git/**",
363344
+ "**/node_modules/**",
363345
+ "**/src/generators/**/files/**/*",
363346
+ "**/dist/**",
363347
+ "**/tmp/**",
363348
+ "**/coverage/**",
363349
+ "**/bench/**",
363350
+ "**/.wrangler/**",
363351
+ "**/.docusaurus/**",
363352
+ "**/.tamagui/**",
363353
+ "**/tamagui.css",
363354
+ "**/.nx/**",
363355
+ "**/.next/**",
363356
+ "**/workbox*.js",
363357
+ "**/sw*.js",
363358
+ "**/service-worker.js",
363359
+ "**/fallback*.js",
363360
+ "**/ios/**",
363361
+ "**/.android/**",
363362
+ "**/.DS_Store/**",
363363
+ "**/Thumbs.db/**",
363364
+ "**/.cspellcache",
363365
+ "**/package-lock.*",
363366
+ "**/npm-lock.*",
363367
+ "**/pnpm-lock.*",
363368
+ "**/pnpm-lock.*",
363369
+ "**/bun.lockb",
363370
+ "**/cargo.lock",
363371
+ "**/next-env.d.ts",
363372
+ "**/CODEOWNERS"
363373
+ ];
363374
+
363324
363375
  // packages/eslint/src/utils/constants.ts
363325
363376
  var RESTRICTED_SYNTAX = [
363326
363377
  {
@@ -363399,57 +363450,6 @@ var CODE_BLOCK = "**/*.md{,x}/*";
363399
363450
  var CODE_FILE = "**/*.{,c,m}{j,t}s{,x}";
363400
363451
  var TS_FILE = "**/*.{,c,m}ts{,x}";
363401
363452
 
363402
- // packages/eslint/src/utils/format-config.ts
363403
- var formatConfig = (name, config4 = []) => {
363404
- return config4.map((config5, index) => {
363405
- if (!config5 || config5.name) {
363406
- return config5 ?? {};
363407
- }
363408
- return {
363409
- ...config5,
363410
- name: `Storm Software (${name}) #${index + 1}`,
363411
- settings: {
363412
- "import/resolver": "node",
363413
- ...config5.settings ?? {}
363414
- }
363415
- };
363416
- });
363417
- };
363418
-
363419
- // packages/eslint/src/utils/ignores.ts
363420
- var ignores = [
363421
- "**/.git/**",
363422
- "**/node_modules/**",
363423
- "**/src/generators/**/files/**/*",
363424
- "**/dist/**",
363425
- "**/tmp/**",
363426
- "**/coverage/**",
363427
- "**/bench/**",
363428
- "**/.wrangler/**",
363429
- "**/.docusaurus/**",
363430
- "**/.tamagui/**",
363431
- "**/tamagui.css",
363432
- "**/.nx/**",
363433
- "**/.next/**",
363434
- "**/workbox*.js",
363435
- "**/sw*.js",
363436
- "**/service-worker.js",
363437
- "**/fallback*.js",
363438
- "**/ios/**",
363439
- "**/.android/**",
363440
- "**/.DS_Store/**",
363441
- "**/Thumbs.db/**",
363442
- "**/.cspellcache",
363443
- "**/package-lock.*",
363444
- "**/npm-lock.*",
363445
- "**/pnpm-lock.*",
363446
- "**/pnpm-lock.*",
363447
- "**/bun.lockb",
363448
- "**/cargo.lock",
363449
- "**/next-env.d.ts",
363450
- "**/CODEOWNERS"
363451
- ];
363452
-
363453
363453
  // packages/eslint/src/base.ts
363454
363454
  var workspaceRoot = findWorkspaceRoot();
363455
363455
  var prettierCompat = new FlatCompat({
package/cjs/electron.cjs CHANGED
@@ -363324,6 +363324,57 @@ var config2 = {
363324
363324
  };
363325
363325
  var storm_default = config2;
363326
363326
 
363327
+ // packages/eslint/src/utils/format-config.ts
363328
+ var formatConfig = (name, config5 = []) => {
363329
+ return config5.map((config6, index) => {
363330
+ if (!config6 || config6.name) {
363331
+ return config6 ?? {};
363332
+ }
363333
+ return {
363334
+ ...config6,
363335
+ name: `Storm Software (${name}) #${index + 1}`,
363336
+ settings: {
363337
+ "import/resolver": "node",
363338
+ ...config6.settings ?? {}
363339
+ }
363340
+ };
363341
+ });
363342
+ };
363343
+
363344
+ // packages/eslint/src/utils/ignores.ts
363345
+ var ignores = [
363346
+ "**/.git/**",
363347
+ "**/node_modules/**",
363348
+ "**/src/generators/**/files/**/*",
363349
+ "**/dist/**",
363350
+ "**/tmp/**",
363351
+ "**/coverage/**",
363352
+ "**/bench/**",
363353
+ "**/.wrangler/**",
363354
+ "**/.docusaurus/**",
363355
+ "**/.tamagui/**",
363356
+ "**/tamagui.css",
363357
+ "**/.nx/**",
363358
+ "**/.next/**",
363359
+ "**/workbox*.js",
363360
+ "**/sw*.js",
363361
+ "**/service-worker.js",
363362
+ "**/fallback*.js",
363363
+ "**/ios/**",
363364
+ "**/.android/**",
363365
+ "**/.DS_Store/**",
363366
+ "**/Thumbs.db/**",
363367
+ "**/.cspellcache",
363368
+ "**/package-lock.*",
363369
+ "**/npm-lock.*",
363370
+ "**/pnpm-lock.*",
363371
+ "**/pnpm-lock.*",
363372
+ "**/bun.lockb",
363373
+ "**/cargo.lock",
363374
+ "**/next-env.d.ts",
363375
+ "**/CODEOWNERS"
363376
+ ];
363377
+
363327
363378
  // packages/eslint/src/utils/constants.ts
363328
363379
  var RESTRICTED_SYNTAX = [
363329
363380
  {
@@ -363402,57 +363453,6 @@ var CODE_BLOCK = "**/*.md{,x}/*";
363402
363453
  var CODE_FILE = "**/*.{,c,m}{j,t}s{,x}";
363403
363454
  var TS_FILE = "**/*.{,c,m}ts{,x}";
363404
363455
 
363405
- // packages/eslint/src/utils/format-config.ts
363406
- var formatConfig = (name, config5 = []) => {
363407
- return config5.map((config6, index) => {
363408
- if (!config6 || config6.name) {
363409
- return config6 ?? {};
363410
- }
363411
- return {
363412
- ...config6,
363413
- name: `Storm Software (${name}) #${index + 1}`,
363414
- settings: {
363415
- "import/resolver": "node",
363416
- ...config6.settings ?? {}
363417
- }
363418
- };
363419
- });
363420
- };
363421
-
363422
- // packages/eslint/src/utils/ignores.ts
363423
- var ignores = [
363424
- "**/.git/**",
363425
- "**/node_modules/**",
363426
- "**/src/generators/**/files/**/*",
363427
- "**/dist/**",
363428
- "**/tmp/**",
363429
- "**/coverage/**",
363430
- "**/bench/**",
363431
- "**/.wrangler/**",
363432
- "**/.docusaurus/**",
363433
- "**/.tamagui/**",
363434
- "**/tamagui.css",
363435
- "**/.nx/**",
363436
- "**/.next/**",
363437
- "**/workbox*.js",
363438
- "**/sw*.js",
363439
- "**/service-worker.js",
363440
- "**/fallback*.js",
363441
- "**/ios/**",
363442
- "**/.android/**",
363443
- "**/.DS_Store/**",
363444
- "**/Thumbs.db/**",
363445
- "**/.cspellcache",
363446
- "**/package-lock.*",
363447
- "**/npm-lock.*",
363448
- "**/pnpm-lock.*",
363449
- "**/pnpm-lock.*",
363450
- "**/bun.lockb",
363451
- "**/cargo.lock",
363452
- "**/next-env.d.ts",
363453
- "**/CODEOWNERS"
363454
- ];
363455
-
363456
363456
  // packages/eslint/src/base.ts
363457
363457
  var workspaceRoot = findWorkspaceRoot();
363458
363458
  var prettierCompat = new FlatCompat({
package/cjs/graphql.cjs CHANGED
@@ -496249,6 +496249,57 @@ var config2 = {
496249
496249
  };
496250
496250
  var storm_default = config2;
496251
496251
 
496252
+ // packages/eslint/src/utils/format-config.ts
496253
+ var formatConfig = (name, config5 = []) => {
496254
+ return config5.map((config6, index) => {
496255
+ if (!config6 || config6.name) {
496256
+ return config6 ?? {};
496257
+ }
496258
+ return {
496259
+ ...config6,
496260
+ name: `Storm Software (${name}) #${index + 1}`,
496261
+ settings: {
496262
+ "import/resolver": "node",
496263
+ ...config6.settings ?? {}
496264
+ }
496265
+ };
496266
+ });
496267
+ };
496268
+
496269
+ // packages/eslint/src/utils/ignores.ts
496270
+ var ignores = [
496271
+ "**/.git/**",
496272
+ "**/node_modules/**",
496273
+ "**/src/generators/**/files/**/*",
496274
+ "**/dist/**",
496275
+ "**/tmp/**",
496276
+ "**/coverage/**",
496277
+ "**/bench/**",
496278
+ "**/.wrangler/**",
496279
+ "**/.docusaurus/**",
496280
+ "**/.tamagui/**",
496281
+ "**/tamagui.css",
496282
+ "**/.nx/**",
496283
+ "**/.next/**",
496284
+ "**/workbox*.js",
496285
+ "**/sw*.js",
496286
+ "**/service-worker.js",
496287
+ "**/fallback*.js",
496288
+ "**/ios/**",
496289
+ "**/.android/**",
496290
+ "**/.DS_Store/**",
496291
+ "**/Thumbs.db/**",
496292
+ "**/.cspellcache",
496293
+ "**/package-lock.*",
496294
+ "**/npm-lock.*",
496295
+ "**/pnpm-lock.*",
496296
+ "**/pnpm-lock.*",
496297
+ "**/bun.lockb",
496298
+ "**/cargo.lock",
496299
+ "**/next-env.d.ts",
496300
+ "**/CODEOWNERS"
496301
+ ];
496302
+
496252
496303
  // packages/eslint/src/utils/constants.ts
496253
496304
  var RESTRICTED_SYNTAX = [
496254
496305
  {
@@ -496327,57 +496378,6 @@ var CODE_BLOCK = "**/*.md{,x}/*";
496327
496378
  var CODE_FILE = "**/*.{,c,m}{j,t}s{,x}";
496328
496379
  var TS_FILE = "**/*.{,c,m}ts{,x}";
496329
496380
 
496330
- // packages/eslint/src/utils/format-config.ts
496331
- var formatConfig = (name, config5 = []) => {
496332
- return config5.map((config6, index) => {
496333
- if (!config6 || config6.name) {
496334
- return config6 ?? {};
496335
- }
496336
- return {
496337
- ...config6,
496338
- name: `Storm Software (${name}) #${index + 1}`,
496339
- settings: {
496340
- "import/resolver": "node",
496341
- ...config6.settings ?? {}
496342
- }
496343
- };
496344
- });
496345
- };
496346
-
496347
- // packages/eslint/src/utils/ignores.ts
496348
- var ignores = [
496349
- "**/.git/**",
496350
- "**/node_modules/**",
496351
- "**/src/generators/**/files/**/*",
496352
- "**/dist/**",
496353
- "**/tmp/**",
496354
- "**/coverage/**",
496355
- "**/bench/**",
496356
- "**/.wrangler/**",
496357
- "**/.docusaurus/**",
496358
- "**/.tamagui/**",
496359
- "**/tamagui.css",
496360
- "**/.nx/**",
496361
- "**/.next/**",
496362
- "**/workbox*.js",
496363
- "**/sw*.js",
496364
- "**/service-worker.js",
496365
- "**/fallback*.js",
496366
- "**/ios/**",
496367
- "**/.android/**",
496368
- "**/.DS_Store/**",
496369
- "**/Thumbs.db/**",
496370
- "**/.cspellcache",
496371
- "**/package-lock.*",
496372
- "**/npm-lock.*",
496373
- "**/pnpm-lock.*",
496374
- "**/pnpm-lock.*",
496375
- "**/bun.lockb",
496376
- "**/cargo.lock",
496377
- "**/next-env.d.ts",
496378
- "**/CODEOWNERS"
496379
- ];
496380
-
496381
496381
  // packages/eslint/src/base.ts
496382
496382
  var workspaceRoot = findWorkspaceRoot();
496383
496383
  var prettierCompat = new FlatCompat({
package/cjs/index.cjs CHANGED
@@ -724944,6 +724944,57 @@ var config2 = {
724944
724944
  };
724945
724945
  var storm_default = config2;
724946
724946
 
724947
+ // packages/eslint/src/utils/format-config.ts
724948
+ var formatConfig = (name, config17 = []) => {
724949
+ return config17.map((config18, index) => {
724950
+ if (!config18 || config18.name) {
724951
+ return config18 ?? {};
724952
+ }
724953
+ return {
724954
+ ...config18,
724955
+ name: `Storm Software (${name}) #${index + 1}`,
724956
+ settings: {
724957
+ "import/resolver": "node",
724958
+ ...config18.settings ?? {}
724959
+ }
724960
+ };
724961
+ });
724962
+ };
724963
+
724964
+ // packages/eslint/src/utils/ignores.ts
724965
+ var ignores = [
724966
+ "**/.git/**",
724967
+ "**/node_modules/**",
724968
+ "**/src/generators/**/files/**/*",
724969
+ "**/dist/**",
724970
+ "**/tmp/**",
724971
+ "**/coverage/**",
724972
+ "**/bench/**",
724973
+ "**/.wrangler/**",
724974
+ "**/.docusaurus/**",
724975
+ "**/.tamagui/**",
724976
+ "**/tamagui.css",
724977
+ "**/.nx/**",
724978
+ "**/.next/**",
724979
+ "**/workbox*.js",
724980
+ "**/sw*.js",
724981
+ "**/service-worker.js",
724982
+ "**/fallback*.js",
724983
+ "**/ios/**",
724984
+ "**/.android/**",
724985
+ "**/.DS_Store/**",
724986
+ "**/Thumbs.db/**",
724987
+ "**/.cspellcache",
724988
+ "**/package-lock.*",
724989
+ "**/npm-lock.*",
724990
+ "**/pnpm-lock.*",
724991
+ "**/pnpm-lock.*",
724992
+ "**/bun.lockb",
724993
+ "**/cargo.lock",
724994
+ "**/next-env.d.ts",
724995
+ "**/CODEOWNERS"
724996
+ ];
724997
+
724947
724998
  // packages/eslint/src/utils/constants.ts
724948
724999
  var RESTRICTED_SYNTAX = [
724949
725000
  {
@@ -725022,57 +725073,6 @@ var CODE_BLOCK = "**/*.md{,x}/*";
725022
725073
  var CODE_FILE = "**/*.{,c,m}{j,t}s{,x}";
725023
725074
  var TS_FILE = "**/*.{,c,m}ts{,x}";
725024
725075
 
725025
- // packages/eslint/src/utils/format-config.ts
725026
- var formatConfig = (name, config17 = []) => {
725027
- return config17.map((config18, index) => {
725028
- if (!config18 || config18.name) {
725029
- return config18 ?? {};
725030
- }
725031
- return {
725032
- ...config18,
725033
- name: `Storm Software (${name}) #${index + 1}`,
725034
- settings: {
725035
- "import/resolver": "node",
725036
- ...config18.settings ?? {}
725037
- }
725038
- };
725039
- });
725040
- };
725041
-
725042
- // packages/eslint/src/utils/ignores.ts
725043
- var ignores = [
725044
- "**/.git/**",
725045
- "**/node_modules/**",
725046
- "**/src/generators/**/files/**/*",
725047
- "**/dist/**",
725048
- "**/tmp/**",
725049
- "**/coverage/**",
725050
- "**/bench/**",
725051
- "**/.wrangler/**",
725052
- "**/.docusaurus/**",
725053
- "**/.tamagui/**",
725054
- "**/tamagui.css",
725055
- "**/.nx/**",
725056
- "**/.next/**",
725057
- "**/workbox*.js",
725058
- "**/sw*.js",
725059
- "**/service-worker.js",
725060
- "**/fallback*.js",
725061
- "**/ios/**",
725062
- "**/.android/**",
725063
- "**/.DS_Store/**",
725064
- "**/Thumbs.db/**",
725065
- "**/.cspellcache",
725066
- "**/package-lock.*",
725067
- "**/npm-lock.*",
725068
- "**/pnpm-lock.*",
725069
- "**/pnpm-lock.*",
725070
- "**/bun.lockb",
725071
- "**/cargo.lock",
725072
- "**/next-env.d.ts",
725073
- "**/CODEOWNERS"
725074
- ];
725075
-
725076
725076
  // packages/eslint/src/base.ts
725077
725077
  var workspaceRoot = findWorkspaceRoot();
725078
725078
  var prettierCompat = new FlatCompat({
package/cjs/json.cjs CHANGED
@@ -381618,6 +381618,57 @@ var config2 = {
381618
381618
  };
381619
381619
  var storm_default = config2;
381620
381620
 
381621
+ // packages/eslint/src/utils/format-config.ts
381622
+ var formatConfig = (name, config5 = []) => {
381623
+ return config5.map((config6, index) => {
381624
+ if (!config6 || config6.name) {
381625
+ return config6 ?? {};
381626
+ }
381627
+ return {
381628
+ ...config6,
381629
+ name: `Storm Software (${name}) #${index + 1}`,
381630
+ settings: {
381631
+ "import/resolver": "node",
381632
+ ...config6.settings ?? {}
381633
+ }
381634
+ };
381635
+ });
381636
+ };
381637
+
381638
+ // packages/eslint/src/utils/ignores.ts
381639
+ var ignores = [
381640
+ "**/.git/**",
381641
+ "**/node_modules/**",
381642
+ "**/src/generators/**/files/**/*",
381643
+ "**/dist/**",
381644
+ "**/tmp/**",
381645
+ "**/coverage/**",
381646
+ "**/bench/**",
381647
+ "**/.wrangler/**",
381648
+ "**/.docusaurus/**",
381649
+ "**/.tamagui/**",
381650
+ "**/tamagui.css",
381651
+ "**/.nx/**",
381652
+ "**/.next/**",
381653
+ "**/workbox*.js",
381654
+ "**/sw*.js",
381655
+ "**/service-worker.js",
381656
+ "**/fallback*.js",
381657
+ "**/ios/**",
381658
+ "**/.android/**",
381659
+ "**/.DS_Store/**",
381660
+ "**/Thumbs.db/**",
381661
+ "**/.cspellcache",
381662
+ "**/package-lock.*",
381663
+ "**/npm-lock.*",
381664
+ "**/pnpm-lock.*",
381665
+ "**/pnpm-lock.*",
381666
+ "**/bun.lockb",
381667
+ "**/cargo.lock",
381668
+ "**/next-env.d.ts",
381669
+ "**/CODEOWNERS"
381670
+ ];
381671
+
381621
381672
  // packages/eslint/src/utils/constants.ts
381622
381673
  var RESTRICTED_SYNTAX = [
381623
381674
  {
@@ -381696,57 +381747,6 @@ var CODE_BLOCK = "**/*.md{,x}/*";
381696
381747
  var CODE_FILE = "**/*.{,c,m}{j,t}s{,x}";
381697
381748
  var TS_FILE = "**/*.{,c,m}ts{,x}";
381698
381749
 
381699
- // packages/eslint/src/utils/format-config.ts
381700
- var formatConfig = (name, config5 = []) => {
381701
- return config5.map((config6, index) => {
381702
- if (!config6 || config6.name) {
381703
- return config6 ?? {};
381704
- }
381705
- return {
381706
- ...config6,
381707
- name: `Storm Software (${name}) #${index + 1}`,
381708
- settings: {
381709
- "import/resolver": "node",
381710
- ...config6.settings ?? {}
381711
- }
381712
- };
381713
- });
381714
- };
381715
-
381716
- // packages/eslint/src/utils/ignores.ts
381717
- var ignores = [
381718
- "**/.git/**",
381719
- "**/node_modules/**",
381720
- "**/src/generators/**/files/**/*",
381721
- "**/dist/**",
381722
- "**/tmp/**",
381723
- "**/coverage/**",
381724
- "**/bench/**",
381725
- "**/.wrangler/**",
381726
- "**/.docusaurus/**",
381727
- "**/.tamagui/**",
381728
- "**/tamagui.css",
381729
- "**/.nx/**",
381730
- "**/.next/**",
381731
- "**/workbox*.js",
381732
- "**/sw*.js",
381733
- "**/service-worker.js",
381734
- "**/fallback*.js",
381735
- "**/ios/**",
381736
- "**/.android/**",
381737
- "**/.DS_Store/**",
381738
- "**/Thumbs.db/**",
381739
- "**/.cspellcache",
381740
- "**/package-lock.*",
381741
- "**/npm-lock.*",
381742
- "**/pnpm-lock.*",
381743
- "**/pnpm-lock.*",
381744
- "**/bun.lockb",
381745
- "**/cargo.lock",
381746
- "**/next-env.d.ts",
381747
- "**/CODEOWNERS"
381748
- ];
381749
-
381750
381750
  // packages/eslint/src/base.ts
381751
381751
  var workspaceRoot = findWorkspaceRoot();
381752
381752
  var prettierCompat = new FlatCompat({