Coder Social home page Coder Social logo

Comments (7)

ehoogeveen-medweb avatar ehoogeveen-medweb commented on June 1, 2024 3

Technically I think the old title was more accurate if my diagnosis is correct, as it's in-project files getting reported as out-of-project files 😁

I'll try to put together a pull request.

from typescript-eslint.

ehoogeveen-medweb avatar ehoogeveen-medweb commented on June 1, 2024 2

Looking at the code, I think the problem might be here:

defaultProjectMatchedFiles.add(filePathAbsolute);

It unconditionally does

  defaultProjectMatchedFiles.add(filePathAbsolute);

so every file will be considered as matching the default project. If I understand the code correctly, it should be checking against opened.configFilename:

  if (!opened.configFileName) {
    defaultProjectMatchedFiles.add(filePathAbsolute);
  }

I've tried adding that check locally and no longer get the warnings (but I haven't checked to see if files that actually don't have a project still trigger it).

from typescript-eslint.

ehoogeveen-medweb avatar ehoogeveen-medweb commented on June 1, 2024 1

Workaround: Set parserOptions.EXPERIMENTAL_useProjectService.maximumDefaultProjectFileMatchCount_THIS_WILL_SLOW_DOWN_LINTING to some huge value like Infinity.

{
  parserOptions: {
    EXPERIMENTAL_useProjectService: {
      maximumDefaultProjectFileMatchCount_THIS_WILL_SLOW_DOWN_LINTING: Infinity,
    },
  },
}

(but note that Infinity isn't supported by JSON so you'll need to use a finite number like 1e10 in JSON-based configs)

from typescript-eslint.

JoshuaKGoldberg avatar JoshuaKGoldberg commented on June 1, 2024

Un-assigning from myself as I'm on vacation and then conference-traveling this month, and won't have time to investigate. If anybody would like to dive into the code to investigate then please do!

maximumDefaultProjectFileMatchCount_THIS_WILL_SLOW_DOWN_LINTING is appropriately obnoxiously named. It's a "bandaid" solution to files being unmatched by the project service. A better solution is to figure out why they're unmatched and fix that bug - which is either in the ESLint config being used or in typescript-eslint.

As mentioned, #8925 is the PR that added these new code paths. That PR touches the relevant files in packages/typescript-estree you'll likely want to look at first.

from typescript-eslint.

ehoogeveen-medweb avatar ehoogeveen-medweb commented on June 1, 2024

I've updated the reproduction to typescript-eslint version 7.9.0 and set maximumDefaultProjectFileMatchCount_THIS_WILL_SLOW_DOWN_LINTING: 0 to simplify the reproduction.

from typescript-eslint.

JoshuaKGoldberg avatar JoshuaKGoldberg commented on June 1, 2024

@ehoogeveen-medweb excellent find, thanks for pointing this out! Are you up for sending a PR to fix this? 😁

from typescript-eslint.

JoshuaKGoldberg avatar JoshuaKGoldberg commented on June 1, 2024

Haha fair point!

from typescript-eslint.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.