cartant / eslint-plugin-rxjs

ESLint rules for RxJS
MIT License
312 stars 37 forks source link

Support typescript-eslint v8 to use the Project Service #133

Open Samuel-Therrien-Beslogic opened 2 months ago

Samuel-Therrien-Beslogic commented 2 months ago

See https://typescript-eslint.io/blog/announcing-typescript-eslint-v8#project-service

As a temporary workaround, I'm still setting EXPERIMENTAL_useProjectService:

/** @type {import("eslint").Linter.Config} */
module.exports = {
  parserOptions: {
    projectService: true,
    // Still needed for plugins that haven't updated to typescript-eslint@8 yet
    EXPERIMENTAL_useProjectService: true,
  },
}