Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

eslint + typescript + monorepo - works correctly on CLI, but not in the IDE #1840

Closed
timfee opened this issue Apr 28, 2024 · 4 comments
Closed
Labels
info-needed Issue requires more information from poster

Comments

@timfee
Copy link

timfee commented Apr 28, 2024

Hello!

Problem

When I have several eslint instances in my monorepo that reference a common package, Visual Studio seems to get "stuck" in resolving the project directory to the first path I open in a session, and uses that path to validate all other packages.

I tried "auto" as well as explicitly listing workingDirectories in my config file, and have used the nightly version of ESLint with flat-file support, as well as the prod version with the experimental enable flag set to true.

Repro

Please see: https://github.com/timfee/eslint-repro

Screen.Shot.2024-04-28.at.13.13.13.mp4
  1. Open the workspace root in VSCode then open a file in a sub-directory that ESLint would validate.
  2. Observe it works fine.
  3. Open a file in a different sub-directory and observe that the resolved project parser is pointing to the cwd of the file in step 1.
  4. Run turbo lint from the workspace root and observe no errors.

I'll cross post to antfu/eslint-config#463 since I'm not sure if any of this is specific to antfu's eslint-config, but in case this is something specific with flat configs + the extension, I wanted to share here, too!

@dbaeumer
Copy link
Member

@timfee thanks for the issue report. Unfortunately, I can't play the video. Gets always stuck after a couple of seconds.

I cloned the repository however it is unclear how to reproduce this. Can you please provide me with steps.

@dbaeumer dbaeumer added the info-needed Issue requires more information from poster label Apr 29, 2024
@timfee
Copy link
Author

timfee commented Apr 29, 2024

Sure.

Step 1:

Open vscode to the root directory and open a tsx page. Then, open to another page in a different repository directory to observe the error:

Parsing error: ESLint was configured to run on `/Users/timfee/Developer/eslint-repro/apps/docs/app/page.tsx` using `parserOptions.project`: /users/timfee/developer/eslint-repro/apps/web/tsconfig.json
However, that TSConfig does not include this file.

⚠️ It tries to lint the second file with the first tsconfig.

Screen Shot 2024-04-29 at 13 47 40

Step 2

Exit and open another vscode instance at root, and do the reverse - you'll encounter the same issue (just backwards :))

Screen Shot 2024-04-29 at 13 48 26

Step 3

Run the cli command and you'll (correctly) see an issue in one file and no other errors or problems:
Screen Shot 2024-04-29 at 13 48 59


My workspace settings are in the repro directory, but here are my user settings.json and lastSyncextensions.json

@timfee
Copy link
Author

timfee commented Apr 30, 2024

Ah, also some debug output:
[Info  - 11:56:29 AM] ESLint server is starting.
[Info  - 11:56:29 AM] ESLint server running in node v18.18.2
[Info  - 11:56:29 AM] ESLint server is running.
[Info  - 11:56:29 AM] ESLint library loaded from: /Users/timfee/Developer/pzip/node_modules/eslint/lib/unsupported-api.js
[Info  - 11:56:29 AM] ESLint version 9.1.1 supports flat config without experimental opt-in. The 'eslint.experimental.useFlatConfig' setting can be removed.
2024-04-30T15:56:29.662Z eslint:eslint Searching for eslint.config.js
2024-04-30T15:56:29.663Z eslint:eslint Loading config from /Users/timfee/Developer/pzip/packages/db/eslint.config.js
2024-04-30T15:56:29.663Z eslint:eslint Config file URL is file:///Users/timfee/Developer/pzip/packages/db/eslint.config.js
2024-04-30T15:56:29.886Z eslint:rules Loading rule 'no-warning-comments' (remaining=289)
2024-04-30T15:56:29.989Z eslint:rules Loading rule 'block-spacing' (remaining=288)
2024-04-30T15:56:29.990Z eslint:rules Loading rule 'brace-style' (remaining=287)
2024-04-30T15:56:29.990Z eslint:rules Loading rule 'comma-dangle' (remaining=286)
2024-04-30T15:56:29.991Z eslint:rules Loading rule 'consistent-return' (remaining=285)
2024-04-30T15:56:29.993Z eslint:rules Loading rule 'dot-notation' (remaining=284)
2024-04-30T15:56:29.994Z eslint:rules Loading rule 'indent' (remaining=283)
2024-04-30T15:56:29.995Z eslint:rules Loading rule 'init-declarations' (remaining=282)
2024-04-30T15:56:29.995Z eslint:rules Loading rule 'key-spacing' (remaining=281)
2024-04-30T15:56:29.996Z eslint:rules Loading rule 'keyword-spacing' (remaining=280)
2024-04-30T15:56:29.996Z eslint:rules Loading rule 'lines-around-comment' (remaining=279)
2024-04-30T15:56:29.996Z eslint:rules Loading rule 'lines-between-class-members' (remaining=278)
2024-04-30T15:56:29.997Z eslint:rules Loading rule 'max-params' (remaining=277)
2024-04-30T15:56:30.001Z eslint:rules Loading rule 'no-dupe-class-members' (remaining=276)
2024-04-30T15:56:30.001Z eslint:rules Loading rule 'no-empty-function' (remaining=275)
2024-04-30T15:56:30.002Z eslint:rules Loading rule 'no-extra-parens' (remaining=274)
2024-04-30T15:56:30.002Z eslint:rules Loading rule 'no-extra-semi' (remaining=273)
2024-04-30T15:56:30.007Z eslint:rules Loading rule 'no-invalid-this' (remaining=272)
2024-04-30T15:56:30.007Z eslint:rules Loading rule 'no-loop-func' (remaining=271)
2024-04-30T15:56:30.007Z eslint:rules Loading rule 'no-loss-of-precision' (remaining=270)
2024-04-30T15:56:30.007Z eslint:rules Loading rule 'no-magic-numbers' (remaining=269)
2024-04-30T15:56:30.011Z eslint:rules Loading rule 'no-restricted-imports' (remaining=268)
2024-04-30T15:56:30.022Z eslint:rules Loading rule 'no-unused-expressions' (remaining=267)
2024-04-30T15:56:30.022Z eslint:rules Loading rule 'no-useless-constructor' (remaining=266)
2024-04-30T15:56:30.024Z eslint:rules Loading rule 'object-curly-spacing' (remaining=265)
2024-04-30T15:56:30.025Z eslint:rules Loading rule 'prefer-destructuring' (remaining=264)
2024-04-30T15:56:30.036Z eslint:rules Loading rule 'quotes' (remaining=263)
2024-04-30T15:56:30.038Z eslint:rules Loading rule 'semi' (remaining=262)
2024-04-30T15:56:30.038Z eslint:rules Loading rule 'space-before-blocks' (remaining=261)
2024-04-30T15:56:30.038Z eslint:rules Loading rule 'space-infix-ops' (remaining=260)
2024-04-30T15:56:30.100Z eslint:rules Loading rule 'no-dupe-keys' (remaining=259)
2024-04-30T15:56:30.100Z eslint:rules Loading rule 'no-floating-decimal' (remaining=258)
2024-04-30T15:56:30.101Z eslint:rules Loading rule 'no-irregular-whitespace' (remaining=257)
2024-04-30T15:56:30.101Z eslint:rules Loading rule 'no-multi-str' (remaining=256)
2024-04-30T15:56:30.101Z eslint:rules Loading rule 'no-octal-escape' (remaining=255)
2024-04-30T15:56:30.102Z eslint:rules Loading rule 'no-octal' (remaining=254)
2024-04-30T15:56:30.102Z eslint:rules Loading rule 'no-sparse-arrays' (remaining=253)
2024-04-30T15:56:30.102Z eslint:rules Loading rule 'no-useless-escape' (remaining=252)
2024-04-30T15:56:30.285Z eslint:rules Loading rule 'accessor-pairs' (remaining=251)
2024-04-30T15:56:30.287Z eslint:rules Loading rule 'array-callback-return' (remaining=250)
2024-04-30T15:56:30.287Z eslint:rules Loading rule 'block-scoped-var' (remaining=249)
2024-04-30T15:56:30.288Z eslint:rules Loading rule 'default-case-last' (remaining=248)
2024-04-30T15:56:30.288Z eslint:rules Loading rule 'eqeqeq' (remaining=247)
2024-04-30T15:56:30.288Z eslint:rules Loading rule 'new-cap' (remaining=246)
2024-04-30T15:56:30.289Z eslint:rules Loading rule 'no-alert' (remaining=245)
2024-04-30T15:56:30.289Z eslint:rules Loading rule 'no-async-promise-executor' (remaining=244)
2024-04-30T15:56:30.289Z eslint:rules Loading rule 'no-caller' (remaining=243)
2024-04-30T15:56:30.289Z eslint:rules Loading rule 'no-case-declarations' (remaining=242)
2024-04-30T15:56:30.289Z eslint:rules Loading rule 'no-class-assign' (remaining=241)
2024-04-30T15:56:30.289Z eslint:rules Loading rule 'no-compare-neg-zero' (remaining=240)
2024-04-30T15:56:30.290Z eslint:rules Loading rule 'no-cond-assign' (remaining=239)
2024-04-30T15:56:30.290Z eslint:rules Loading rule 'no-console' (remaining=238)
2024-04-30T15:56:30.290Z eslint:rules Loading rule 'no-control-regex' (remaining=237)
2024-04-30T15:56:30.290Z eslint:rules Loading rule 'no-debugger' (remaining=236)
2024-04-30T15:56:30.290Z eslint:rules Loading rule 'no-delete-var' (remaining=235)
2024-04-30T15:56:30.291Z eslint:rules Loading rule 'no-duplicate-case' (remaining=234)
2024-04-30T15:56:30.291Z eslint:rules Loading rule 'no-empty' (remaining=233)
2024-04-30T15:56:30.291Z eslint:rules Loading rule 'no-empty-character-class' (remaining=232)
2024-04-30T15:56:30.291Z eslint:rules Loading rule 'no-empty-pattern' (remaining=231)
2024-04-30T15:56:30.291Z eslint:rules Loading rule 'no-eval' (remaining=230)
2024-04-30T15:56:30.291Z eslint:rules Loading rule 'no-ex-assign' (remaining=229)
2024-04-30T15:56:30.292Z eslint:rules Loading rule 'no-extend-native' (remaining=228)
2024-04-30T15:56:30.292Z eslint:rules Loading rule 'no-extra-bind' (remaining=227)
2024-04-30T15:56:30.292Z eslint:rules Loading rule 'no-extra-boolean-cast' (remaining=226)
2024-04-30T15:56:30.292Z eslint:rules Loading rule 'no-fallthrough' (remaining=225)
2024-04-30T15:56:30.292Z eslint:rules Loading rule 'no-global-assign' (remaining=224)
2024-04-30T15:56:30.293Z eslint:rules Loading rule 'no-invalid-regexp' (remaining=223)
2024-04-30T15:56:30.293Z eslint:rules Loading rule 'no-iterator' (remaining=222)
2024-04-30T15:56:30.294Z eslint:rules Loading rule 'no-labels' (remaining=221)
2024-04-30T15:56:30.294Z eslint:rules Loading rule 'no-lone-blocks' (remaining=220)
2024-04-30T15:56:30.294Z eslint:rules Loading rule 'no-misleading-character-class' (remaining=219)
2024-04-30T15:56:30.295Z eslint:rules Loading rule 'no-new' (remaining=218)
2024-04-30T15:56:30.295Z eslint:rules Loading rule 'no-new-func' (remaining=217)
2024-04-30T15:56:30.295Z eslint:rules Loading rule 'no-new-wrappers' (remaining=216)
2024-04-30T15:56:30.295Z eslint:rules Loading rule 'no-proto' (remaining=215)
2024-04-30T15:56:30.295Z eslint:rules Loading rule 'no-prototype-builtins' (remaining=214)
2024-04-30T15:56:30.295Z eslint:rules Loading rule 'no-regex-spaces' (remaining=213)
2024-04-30T15:56:30.295Z eslint:rules Loading rule 'no-restricted-globals' (remaining=212)
2024-04-30T15:56:30.296Z eslint:rules Loading rule 'no-restricted-properties' (remaining=211)
2024-04-30T15:56:30.296Z eslint:rules Loading rule 'no-restricted-syntax' (remaining=210)
2024-04-30T15:56:30.297Z eslint:rules Loading rule 'no-self-assign' (remaining=209)
2024-04-30T15:56:30.297Z eslint:rules Loading rule 'no-self-compare' (remaining=208)
2024-04-30T15:56:30.297Z eslint:rules Loading rule 'no-sequences' (remaining=207)
2024-04-30T15:56:30.297Z eslint:rules Loading rule 'no-shadow-restricted-names' (remaining=206)
2024-04-30T15:56:30.297Z eslint:rules Loading rule 'no-template-curly-in-string' (remaining=205)
2024-04-30T15:56:30.297Z eslint:rules Loading rule 'no-undef-init' (remaining=204)
2024-04-30T15:56:30.298Z eslint:rules Loading rule 'no-unexpected-multiline' (remaining=203)
2024-04-30T15:56:30.298Z eslint:rules Loading rule 'no-unmodified-loop-condition' (remaining=202)
2024-04-30T15:56:30.298Z eslint:rules Loading rule 'no-unneeded-ternary' (remaining=201)
2024-04-30T15:56:30.298Z eslint:rules Loading rule 'no-unreachable-loop' (remaining=200)
2024-04-30T15:56:30.298Z eslint:rules Loading rule 'no-unsafe-finally' (remaining=199)
2024-04-30T15:56:30.299Z eslint:rules Loading rule 'no-useless-backreference' (remaining=198)
2024-04-30T15:56:30.299Z eslint:rules Loading rule 'no-useless-call' (remaining=197)
2024-04-30T15:56:30.299Z eslint:rules Loading rule 'no-useless-catch' (remaining=196)
2024-04-30T15:56:30.299Z eslint:rules Loading rule 'no-useless-computed-key' (remaining=195)
2024-04-30T15:56:30.299Z eslint:rules Loading rule 'no-useless-rename' (remaining=194)
2024-04-30T15:56:30.299Z eslint:rules Loading rule 'no-useless-return' (remaining=193)
2024-04-30T15:56:30.300Z eslint:rules Loading rule 'no-var' (remaining=192)
2024-04-30T15:56:30.300Z eslint:rules Loading rule 'no-with' (remaining=191)
2024-04-30T15:56:30.300Z eslint:rules Loading rule 'object-shorthand' (remaining=190)
2024-04-30T15:56:30.300Z eslint:rules Loading rule 'one-var' (remaining=189)
2024-04-30T15:56:30.301Z eslint:rules Loading rule 'prefer-arrow-callback' (remaining=188)
2024-04-30T15:56:30.301Z eslint:rules Loading rule 'prefer-const' (remaining=187)
2024-04-30T15:56:30.302Z eslint:rules Loading rule 'prefer-exponentiation-operator' (remaining=186)
2024-04-30T15:56:30.302Z eslint:rules Loading rule 'prefer-promise-reject-errors' (remaining=185)
2024-04-30T15:56:30.302Z eslint:rules Loading rule 'prefer-regex-literals' (remaining=184)
2024-04-30T15:56:30.302Z eslint:rules Loading rule 'prefer-rest-params' (remaining=183)
2024-04-30T15:56:30.302Z eslint:rules Loading rule 'prefer-spread' (remaining=182)
2024-04-30T15:56:30.302Z eslint:rules Loading rule 'prefer-template' (remaining=181)
2024-04-30T15:56:30.303Z eslint:rules Loading rule 'sort-imports' (remaining=180)
2024-04-30T15:56:30.303Z eslint:rules Loading rule 'symbol-description' (remaining=179)
2024-04-30T15:56:30.303Z eslint:rules Loading rule 'unicode-bom' (remaining=178)
2024-04-30T15:56:30.304Z eslint:rules Loading rule 'use-isnan' (remaining=177)
2024-04-30T15:56:30.304Z eslint:rules Loading rule 'valid-typeof' (remaining=176)
2024-04-30T15:56:30.304Z eslint:rules Loading rule 'vars-on-top' (remaining=175)
2024-04-30T15:56:30.304Z eslint:rules Loading rule 'yoda' (remaining=174)
2024-04-30T15:56:30.311Z eslint:eslint Searching for eslint.config.js
2024-04-30T15:56:30.311Z eslint:eslint Loading config from /Users/timfee/Developer/pzip/packages/db/eslint.config.js
2024-04-30T15:56:30.311Z eslint:eslint Config file URL is file:///Users/timfee/Developer/pzip/packages/db/eslint.config.js
2024-04-30T15:56:30.330Z eslint:eslint Lint /Users/timfee/Developer/pzip/packages/db/src/config.ts
2024-04-30T15:56:30.330Z eslint:linter Linting code for /Users/timfee/Developer/pzip/packages/db/src/config.ts (pass 1)
2024-04-30T15:56:30.330Z eslint:linter Verify
2024-04-30T15:56:30.330Z eslint:linter With flat config: /Users/timfee/Developer/pzip/packages/db/src/config.ts
2024-04-30T15:56:30.331Z eslint:linter Parsing: /Users/timfee/Developer/pzip/packages/db/src/config.ts
2024-04-30T15:56:30.826Z eslint:linter Parsing successful: /Users/timfee/Developer/pzip/packages/db/src/config.ts
2024-04-30T15:56:30.826Z eslint:linter Scope analysis: /Users/timfee/Developer/pzip/packages/db/src/config.ts
2024-04-30T15:56:30.826Z eslint:linter Scope analysis successful: /Users/timfee/Developer/pzip/packages/db/src/config.ts
2024-04-30T15:56:30.932Z eslint:linter Generating fixed text for /Users/timfee/Developer/pzip/packages/db/src/config.ts (pass 1)
2024-04-30T15:56:30.932Z eslint:source-code-fixer Applying fixes
2024-04-30T15:56:30.932Z eslint:source-code-fixer shouldFix parameter was false, not attempting fixes
2024-04-30T15:56:30.932Z eslint:eslint Linting complete in: 620ms
2024-04-30T15:56:36.725Z eslint:eslint Searching for eslint.config.js
2024-04-30T15:56:36.726Z eslint:eslint Loading config from /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.726Z eslint:eslint Config file URL is file:///Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.745Z eslint:rules Loading rule 'no-implied-eval' (remaining=173)
2024-04-30T15:56:36.745Z eslint:rules Loading rule 'no-throw-literal' (remaining=172)
2024-04-30T15:56:36.746Z eslint:eslint Searching for eslint.config.js
2024-04-30T15:56:36.746Z eslint:eslint Loading config from /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.746Z eslint:eslint Config file URL is file:///Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.762Z eslint:eslint Lint /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.762Z eslint:linter Linting code for /Users/timfee/Developer/pzip/packages/auth/eslint.config.js (pass 1)
2024-04-30T15:56:36.762Z eslint:linter Verify
2024-04-30T15:56:36.762Z eslint:linter With flat config: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.762Z eslint:linter Parsing: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.763Z eslint:linter Parsing successful: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.763Z eslint:linter Scope analysis: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.763Z eslint:linter Scope analysis successful: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.769Z eslint:linter Generating fixed text for /Users/timfee/Developer/pzip/packages/auth/eslint.config.js (pass 1)
2024-04-30T15:56:36.769Z eslint:source-code-fixer Applying fixes
2024-04-30T15:56:36.769Z eslint:source-code-fixer shouldFix parameter was false, not attempting fixes
2024-04-30T15:56:36.769Z eslint:eslint Linting complete in: 23ms
2024-04-30T15:56:36.770Z eslint:eslint Searching for eslint.config.js
2024-04-30T15:56:36.770Z eslint:eslint Loading config from /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.770Z eslint:eslint Config file URL is file:///Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.786Z eslint:eslint Lint /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.786Z eslint:linter Linting code for /Users/timfee/Developer/pzip/packages/auth/eslint.config.js (pass 1)
2024-04-30T15:56:36.786Z eslint:linter Verify
2024-04-30T15:56:36.786Z eslint:linter With flat config: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.786Z eslint:linter Parsing: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.787Z eslint:linter Parsing successful: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.787Z eslint:linter Scope analysis: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.787Z eslint:linter Scope analysis successful: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:36.791Z eslint:linter Generating fixed text for /Users/timfee/Developer/pzip/packages/auth/eslint.config.js (pass 1)
2024-04-30T15:56:36.791Z eslint:source-code-fixer Applying fixes
2024-04-30T15:56:36.791Z eslint:source-code-fixer shouldFix parameter was false, not attempting fixes
2024-04-30T15:56:36.791Z eslint:eslint Linting complete in: 21ms
2024-04-30T15:56:37.915Z eslint:eslint Searching for eslint.config.js
2024-04-30T15:56:37.915Z eslint:eslint Loading config from /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:37.915Z eslint:eslint Config file URL is file:///Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:37.936Z eslint:eslint Lint /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:37.936Z eslint:linter Linting code for /Users/timfee/Developer/pzip/packages/auth/eslint.config.js (pass 1)
2024-04-30T15:56:37.936Z eslint:linter Verify
2024-04-30T15:56:37.936Z eslint:linter With flat config: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:37.936Z eslint:linter Parsing: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:37.937Z eslint:linter Parsing successful: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:37.937Z eslint:linter Scope analysis: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:37.937Z eslint:linter Scope analysis successful: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:37.940Z eslint:linter Generating fixed text for /Users/timfee/Developer/pzip/packages/auth/eslint.config.js (pass 1)
2024-04-30T15:56:37.940Z eslint:source-code-fixer Applying fixes
2024-04-30T15:56:37.940Z eslint:source-code-fixer No fixes to apply
2024-04-30T15:56:37.940Z eslint:eslint Linting complete in: 24ms
2024-04-30T15:56:38.046Z eslint:eslint Searching for eslint.config.js
2024-04-30T15:56:38.046Z eslint:eslint Loading config from /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:38.046Z eslint:eslint Config file URL is file:///Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:38.064Z eslint:eslint Lint /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:38.064Z eslint:linter Linting code for /Users/timfee/Developer/pzip/packages/auth/eslint.config.js (pass 1)
2024-04-30T15:56:38.064Z eslint:linter Verify
2024-04-30T15:56:38.064Z eslint:linter With flat config: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:38.064Z eslint:linter Parsing: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:38.064Z eslint:linter Parsing successful: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:38.064Z eslint:linter Scope analysis: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:38.064Z eslint:linter Scope analysis successful: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:38.067Z eslint:linter Generating fixed text for /Users/timfee/Developer/pzip/packages/auth/eslint.config.js (pass 1)
2024-04-30T15:56:38.067Z eslint:source-code-fixer Applying fixes
2024-04-30T15:56:38.067Z eslint:source-code-fixer shouldFix parameter was false, not attempting fixes
2024-04-30T15:56:38.068Z eslint:eslint Linting complete in: 21ms
2024-04-30T15:56:38.449Z eslint:eslint Searching for eslint.config.js
2024-04-30T15:56:38.449Z eslint:eslint Loading config from /Users/timfee/Developer/pzip/packages/db/eslint.config.js
2024-04-30T15:56:38.449Z eslint:eslint Config file URL is file:///Users/timfee/Developer/pzip/packages/db/eslint.config.js
2024-04-30T15:56:38.466Z eslint:eslint Lint /Users/timfee/Developer/pzip/packages/db/src/config.ts
2024-04-30T15:56:38.466Z eslint:linter Linting code for /Users/timfee/Developer/pzip/packages/db/src/config.ts (pass 1)
2024-04-30T15:56:38.466Z eslint:linter Verify
2024-04-30T15:56:38.466Z eslint:linter With flat config: /Users/timfee/Developer/pzip/packages/db/src/config.ts
2024-04-30T15:56:38.466Z eslint:linter Parsing: /Users/timfee/Developer/pzip/packages/db/src/config.ts
2024-04-30T15:56:38.467Z eslint:linter Parsing successful: /Users/timfee/Developer/pzip/packages/db/src/config.ts
2024-04-30T15:56:38.467Z eslint:linter Scope analysis: /Users/timfee/Developer/pzip/packages/db/src/config.ts
2024-04-30T15:56:38.467Z eslint:linter Scope analysis successful: /Users/timfee/Developer/pzip/packages/db/src/config.ts
2024-04-30T15:56:38.472Z eslint:linter Generating fixed text for /Users/timfee/Developer/pzip/packages/db/src/config.ts (pass 1)
2024-04-30T15:56:38.472Z eslint:source-code-fixer Applying fixes
2024-04-30T15:56:38.472Z eslint:source-code-fixer shouldFix parameter was false, not attempting fixes
2024-04-30T15:56:38.472Z eslint:eslint Linting complete in: 23ms
2024-04-30T15:56:38.537Z eslint:eslint Searching for eslint.config.js
2024-04-30T15:56:38.537Z eslint:eslint Loading config from /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:38.537Z eslint:eslint Config file URL is file:///Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:38.553Z eslint:eslint Lint /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:38.553Z eslint:linter Linting code for /Users/timfee/Developer/pzip/packages/auth/eslint.config.js (pass 1)
2024-04-30T15:56:38.553Z eslint:linter Verify
2024-04-30T15:56:38.553Z eslint:linter With flat config: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:38.553Z eslint:linter Parsing: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:38.554Z eslint:linter Parsing successful: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:38.554Z eslint:linter Scope analysis: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:38.554Z eslint:linter Scope analysis successful: /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:38.556Z eslint:linter Generating fixed text for /Users/timfee/Developer/pzip/packages/auth/eslint.config.js (pass 1)
2024-04-30T15:56:38.556Z eslint:source-code-fixer Applying fixes
2024-04-30T15:56:38.556Z eslint:source-code-fixer shouldFix parameter was false, not attempting fixes
2024-04-30T15:56:38.556Z eslint:eslint Linting complete in: 18ms
2024-04-30T15:56:39.359Z eslint:eslint Searching for eslint.config.js
2024-04-30T15:56:39.359Z eslint:eslint Loading config from /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:39.359Z eslint:eslint Config file URL is file:///Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:39.378Z eslint:eslint Searching for eslint.config.js
2024-04-30T15:56:39.378Z eslint:eslint Loading config from /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:39.378Z eslint:eslint Config file URL is file:///Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:39.396Z eslint:eslint Lint /Users/timfee/Developer/pzip/packages/auth/env.ts
2024-04-30T15:56:39.396Z eslint:linter Linting code for /Users/timfee/Developer/pzip/packages/auth/env.ts (pass 1)
2024-04-30T15:56:39.396Z eslint:linter Verify
2024-04-30T15:56:39.396Z eslint:linter With flat config: /Users/timfee/Developer/pzip/packages/auth/env.ts
2024-04-30T15:56:39.396Z eslint:linter Parsing: /Users/timfee/Developer/pzip/packages/auth/env.ts
2024-04-30T15:56:39.397Z eslint:linter Parsing error: ESLint was configured to run on `/Users/timfee/Developer/pzip/packages/auth/env.ts` using `parserOptions.project`: /users/timfee/developer/pzip/packages/db/tsconfig.json
However, that TSConfig does not include this file. Either:
- Change ESLint's list of included files to not include this file
- Change that TSConfig to include this file
- Create a new TSConfig that includes this file and include it in your parserOptions.project
See the typescript-eslint docs for more info: https://typescript-eslint.io/linting/troubleshooting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-file
Error: ESLint was configured to run on `/Users/timfee/Developer/pzip/packages/auth/env.ts` using `parserOptions.project`: /users/timfee/developer/pzip/packages/db/tsconfig.json
However, that TSConfig does not include this file. Either:
- Change ESLint's list of included files to not include this file
- Change that TSConfig to include this file
- Create a new TSConfig that includes this file and include it in your parserOptions.project
See the typescript-eslint docs for more info: https://typescript-eslint.io/linting/troubleshooting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-file
    at createProjectProgram (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js:98:11)
    at getProgramAndAST (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/typescript-estree/dist/parser.js:54:80)
    at parseAndGenerateServices (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/typescript-estree/dist/parser.js:162:11)
    at Object.parseForESLint (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/parser/dist/parser.js:98:80)
    at parse (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:906:22)
    at Linter._verifyWithFlatConfigArrayAndWithoutProcessors (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:1670:33)
    at Linter._verifyWithFlatConfigArray (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:2016:21)
    at Linter.verify (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:1505:61)
    at Linter.verifyAndFix (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:2253:29)
    at verifyText (/Users/timfee/Developer/pzip/node_modules/eslint/lib/eslint/eslint.js:496:48)
2024-04-30T15:56:39.397Z eslint:linter Generating fixed text for /Users/timfee/Developer/pzip/packages/auth/env.ts (pass 1)
2024-04-30T15:56:39.397Z eslint:source-code-fixer Applying fixes
2024-04-30T15:56:39.397Z eslint:source-code-fixer shouldFix parameter was false, not attempting fixes
2024-04-30T15:56:39.397Z eslint:eslint Linting complete in: 19ms
2024-04-30T15:56:39.397Z eslint:eslint Searching for eslint.config.js
2024-04-30T15:56:39.397Z eslint:eslint Loading config from /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:39.397Z eslint:eslint Config file URL is file:///Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:39.415Z eslint:eslint Lint /Users/timfee/Developer/pzip/packages/auth/env.ts
2024-04-30T15:56:39.415Z eslint:linter Linting code for /Users/timfee/Developer/pzip/packages/auth/env.ts (pass 1)
2024-04-30T15:56:39.415Z eslint:linter Verify
2024-04-30T15:56:39.415Z eslint:linter With flat config: /Users/timfee/Developer/pzip/packages/auth/env.ts
2024-04-30T15:56:39.415Z eslint:linter Parsing: /Users/timfee/Developer/pzip/packages/auth/env.ts
2024-04-30T15:56:39.416Z eslint:linter Parsing error: ESLint was configured to run on `/Users/timfee/Developer/pzip/packages/auth/env.ts` using `parserOptions.project`: /users/timfee/developer/pzip/packages/db/tsconfig.json
However, that TSConfig does not include this file. Either:
- Change ESLint's list of included files to not include this file
- Change that TSConfig to include this file
- Create a new TSConfig that includes this file and include it in your parserOptions.project
See the typescript-eslint docs for more info: https://typescript-eslint.io/linting/troubleshooting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-file
Error: ESLint was configured to run on `/Users/timfee/Developer/pzip/packages/auth/env.ts` using `parserOptions.project`: /users/timfee/developer/pzip/packages/db/tsconfig.json
However, that TSConfig does not include this file. Either:
- Change ESLint's list of included files to not include this file
- Change that TSConfig to include this file
- Create a new TSConfig that includes this file and include it in your parserOptions.project
See the typescript-eslint docs for more info: https://typescript-eslint.io/linting/troubleshooting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-file
    at createProjectProgram (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js:98:11)
    at getProgramAndAST (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/typescript-estree/dist/parser.js:54:80)
    at parseAndGenerateServices (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/typescript-estree/dist/parser.js:162:11)
    at Object.parseForESLint (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/parser/dist/parser.js:98:80)
    at parse (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:906:22)
    at Linter._verifyWithFlatConfigArrayAndWithoutProcessors (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:1670:33)
    at Linter._verifyWithFlatConfigArray (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:2016:21)
    at Linter.verify (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:1505:61)
    at Linter.verifyAndFix (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:2253:29)
    at verifyText (/Users/timfee/Developer/pzip/node_modules/eslint/lib/eslint/eslint.js:496:48)
2024-04-30T15:56:39.416Z eslint:linter Generating fixed text for /Users/timfee/Developer/pzip/packages/auth/env.ts (pass 1)
2024-04-30T15:56:39.416Z eslint:source-code-fixer Applying fixes
2024-04-30T15:56:39.416Z eslint:source-code-fixer shouldFix parameter was false, not attempting fixes
2024-04-30T15:56:39.416Z eslint:eslint Linting complete in: 18ms
2024-04-30T15:56:40.393Z eslint:eslint Searching for eslint.config.js
2024-04-30T15:56:40.393Z eslint:eslint Loading config from /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:40.393Z eslint:eslint Config file URL is file:///Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:40.411Z eslint:eslint Lint /Users/timfee/Developer/pzip/packages/auth/env.ts
2024-04-30T15:56:40.411Z eslint:linter Linting code for /Users/timfee/Developer/pzip/packages/auth/env.ts (pass 1)
2024-04-30T15:56:40.411Z eslint:linter Verify
2024-04-30T15:56:40.411Z eslint:linter With flat config: /Users/timfee/Developer/pzip/packages/auth/env.ts
2024-04-30T15:56:40.411Z eslint:linter Parsing: /Users/timfee/Developer/pzip/packages/auth/env.ts
2024-04-30T15:56:40.412Z eslint:linter Parsing error: ESLint was configured to run on `/Users/timfee/Developer/pzip/packages/auth/env.ts` using `parserOptions.project`: /users/timfee/developer/pzip/packages/db/tsconfig.json
However, that TSConfig does not include this file. Either:
- Change ESLint's list of included files to not include this file
- Change that TSConfig to include this file
- Create a new TSConfig that includes this file and include it in your parserOptions.project
See the typescript-eslint docs for more info: https://typescript-eslint.io/linting/troubleshooting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-file
Error: ESLint was configured to run on `/Users/timfee/Developer/pzip/packages/auth/env.ts` using `parserOptions.project`: /users/timfee/developer/pzip/packages/db/tsconfig.json
However, that TSConfig does not include this file. Either:
- Change ESLint's list of included files to not include this file
- Change that TSConfig to include this file
- Create a new TSConfig that includes this file and include it in your parserOptions.project
See the typescript-eslint docs for more info: https://typescript-eslint.io/linting/troubleshooting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-file
    at createProjectProgram (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js:98:11)
    at getProgramAndAST (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/typescript-estree/dist/parser.js:54:80)
    at parseAndGenerateServices (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/typescript-estree/dist/parser.js:162:11)
    at Object.parseForESLint (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/parser/dist/parser.js:98:80)
    at parse (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:906:22)
    at Linter._verifyWithFlatConfigArrayAndWithoutProcessors (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:1670:33)
    at Linter._verifyWithFlatConfigArray (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:2016:21)
    at Linter.verify (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:1505:61)
    at Linter.verifyAndFix (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:2253:29)
    at verifyText (/Users/timfee/Developer/pzip/node_modules/eslint/lib/eslint/eslint.js:496:48)
2024-04-30T15:56:40.412Z eslint:linter Generating fixed text for /Users/timfee/Developer/pzip/packages/auth/env.ts (pass 1)
2024-04-30T15:56:40.412Z eslint:source-code-fixer Applying fixes
2024-04-30T15:56:40.412Z eslint:source-code-fixer No fixes to apply
2024-04-30T15:56:40.412Z eslint:eslint Linting complete in: 19ms
2024-04-30T15:56:40.452Z eslint:eslint Searching for eslint.config.js
2024-04-30T15:56:40.453Z eslint:eslint Loading config from /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:40.453Z eslint:eslint Config file URL is file:///Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:56:40.473Z eslint:eslint Lint /Users/timfee/Developer/pzip/packages/auth/env.ts
2024-04-30T15:56:40.473Z eslint:linter Linting code for /Users/timfee/Developer/pzip/packages/auth/env.ts (pass 1)
2024-04-30T15:56:40.473Z eslint:linter Verify
2024-04-30T15:56:40.473Z eslint:linter With flat config: /Users/timfee/Developer/pzip/packages/auth/env.ts
2024-04-30T15:56:40.473Z eslint:linter Parsing: /Users/timfee/Developer/pzip/packages/auth/env.ts
2024-04-30T15:56:40.473Z eslint:linter Parsing error: ESLint was configured to run on `/Users/timfee/Developer/pzip/packages/auth/env.ts` using `parserOptions.project`: /users/timfee/developer/pzip/packages/db/tsconfig.json
However, that TSConfig does not include this file. Either:
- Change ESLint's list of included files to not include this file
- Change that TSConfig to include this file
- Create a new TSConfig that includes this file and include it in your parserOptions.project
See the typescript-eslint docs for more info: https://typescript-eslint.io/linting/troubleshooting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-file
Error: ESLint was configured to run on `/Users/timfee/Developer/pzip/packages/auth/env.ts` using `parserOptions.project`: /users/timfee/developer/pzip/packages/db/tsconfig.json
However, that TSConfig does not include this file. Either:
- Change ESLint's list of included files to not include this file
- Change that TSConfig to include this file
- Create a new TSConfig that includes this file and include it in your parserOptions.project
See the typescript-eslint docs for more info: https://typescript-eslint.io/linting/troubleshooting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-file
    at createProjectProgram (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js:98:11)
    at getProgramAndAST (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/typescript-estree/dist/parser.js:54:80)
    at parseAndGenerateServices (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/typescript-estree/dist/parser.js:162:11)
    at Object.parseForESLint (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/parser/dist/parser.js:98:80)
    at parse (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:906:22)
    at Linter._verifyWithFlatConfigArrayAndWithoutProcessors (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:1670:33)
    at Linter._verifyWithFlatConfigArray (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:2016:21)
    at Linter.verify (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:1505:61)
    at Linter.verifyAndFix (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:2253:29)
    at verifyText (/Users/timfee/Developer/pzip/node_modules/eslint/lib/eslint/eslint.js:496:48)
2024-04-30T15:56:40.473Z eslint:linter Generating fixed text for /Users/timfee/Developer/pzip/packages/auth/env.ts (pass 1)
2024-04-30T15:56:40.473Z eslint:source-code-fixer Applying fixes
2024-04-30T15:56:40.473Z eslint:source-code-fixer shouldFix parameter was false, not attempting fixes
2024-04-30T15:56:40.473Z eslint:eslint Linting complete in: 20ms
2024-04-30T15:57:00.350Z eslint:eslint Searching for eslint.config.js
2024-04-30T15:57:00.350Z eslint:eslint Loading config from /Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:57:00.350Z eslint:eslint Config file URL is file:///Users/timfee/Developer/pzip/packages/auth/eslint.config.js
2024-04-30T15:57:00.377Z eslint:eslint Lint /Users/timfee/Developer/pzip/packages/auth/env.ts
2024-04-30T15:57:00.377Z eslint:linter Linting code for /Users/timfee/Developer/pzip/packages/auth/env.ts (pass 1)
2024-04-30T15:57:00.377Z eslint:linter Verify
2024-04-30T15:57:00.377Z eslint:linter With flat config: /Users/timfee/Developer/pzip/packages/auth/env.ts
2024-04-30T15:57:00.377Z eslint:linter Parsing: /Users/timfee/Developer/pzip/packages/auth/env.ts
2024-04-30T15:57:00.378Z eslint:linter Parsing error: ESLint was configured to run on `/Users/timfee/Developer/pzip/packages/auth/env.ts` using `parserOptions.project`: /users/timfee/developer/pzip/packages/db/tsconfig.json
However, that TSConfig does not include this file. Either:
- Change ESLint's list of included files to not include this file
- Change that TSConfig to include this file
- Create a new TSConfig that includes this file and include it in your parserOptions.project
See the typescript-eslint docs for more info: https://typescript-eslint.io/linting/troubleshooting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-file
Error: ESLint was configured to run on `/Users/timfee/Developer/pzip/packages/auth/env.ts` using `parserOptions.project`: /users/timfee/developer/pzip/packages/db/tsconfig.json
However, that TSConfig does not include this file. Either:
- Change ESLint's list of included files to not include this file
- Change that TSConfig to include this file
- Create a new TSConfig that includes this file and include it in your parserOptions.project
See the typescript-eslint docs for more info: https://typescript-eslint.io/linting/troubleshooting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-file
    at createProjectProgram (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js:98:11)
    at getProgramAndAST (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/typescript-estree/dist/parser.js:54:80)
    at parseAndGenerateServices (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/typescript-estree/dist/parser.js:162:11)
    at Object.parseForESLint (/Users/timfee/Developer/pzip/node_modules/@typescript-eslint/parser/dist/parser.js:98:80)
    at parse (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:906:22)
    at Linter._verifyWithFlatConfigArrayAndWithoutProcessors (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:1670:33)
    at Linter._verifyWithFlatConfigArray (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:2016:21)
    at Linter.verify (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:1505:61)
    at Linter.verifyAndFix (/Users/timfee/Developer/pzip/node_modules/eslint/lib/linter/linter.js:2253:29)
    at verifyText (/Users/timfee/Developer/pzip/node_modules/eslint/lib/eslint/eslint.js:496:48)
2024-04-30T15:57:00.378Z eslint:linter Generating fixed text for /Users/timfee/Developer/pzip/packages/auth/env.ts (pass 1)
2024-04-30T15:57:00.378Z eslint:source-code-fixer Applying fixes
2024-04-30T15:57:00.378Z eslint:source-code-fixer shouldFix parameter was false, not attempting fixes
2024-04-30T15:57:00.378Z eslint:eslint Linting complete in: 28ms

@timfee
Copy link
Author

timfee commented Apr 30, 2024

This seems to be an issue with the antfu-esconfig library, will resolve there!

@timfee timfee closed this as not planned Won't fix, can't repro, duplicate, stale Apr 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
info-needed Issue requires more information from poster
Projects
None yet
Development

No branches or pull requests

2 participants