Giter Site home page Giter Site logo

Comments (4)

cartant avatar cartant commented on May 21, 2024

The options for the rule look fine. There is no real recommendation regarding those. However, if you are using the Angular CLI you should follow the configuration recommendations in the README or look at what was done in the included example.

My figuring out what's happening is close to impossible, but I do have some questions that you can ask yourself and investigate:

  • If you are using the Angular CLI, have you ejected? Have you changed the linting configuration at all?
  • The Angular linting runs in three passes. Which fails? Do any succeed?
  • Moving the files around should not be a problem. I have CLI projects with a structure similar to what you've outlined. Was anything else changed when it was restructured?
  • Are you sure all of the files are being linted? If a file is not linted, its usage of a patching observable or operator will not count and said patching could be reported as unused. To ensure the files you expect to be linted are so, why not add some code to intentionally fail the linting?
  • Is it only fromEvent? Have you changed the code to use fromEvent as an imported function, rather than a patching observable?

Hope that's helpful.

from rxjs-tslint-rules.

kamok avatar kamok commented on May 21, 2024

I think my issue is similar to #33

I saw what you wrote on that Issue and I've tried the following:

In my auth.service.ts, I have this line:

const foo = Observable.of([]);

This gets rid of the ERROR: ../client/src/rxjs.imports.ts[8, 1]: Unused patched observable in ./src/rxjs.imports.ts: of

Any ideas why the linter isn't picking up the usage in the actual class?

This isn't really a big deal, imo. Just a nice to fix, fix.

from rxjs-tslint-rules.

cartant avatar cartant commented on May 21, 2024

The problem is that it's very difficult to see the whole context. I'm not even sure what the class you mention looks like or what the usage of Observable.of is like within it.

Basically, the three-pass linting that's in the CLI makes dealing with a single imports file a little tricky - doable, but somewhat tricky. However, it makes diagnosing problems almost impossible. I think that the only way these sorts of things could be addressable would be if the problem could be reproduced - in a fork - using the CLI example that's in this repo.

All I can suggest - without a repro - is that you do what's mentioned in the README:

  • switch of the unused rule for the e2e tests; and
  • make sure all of the RxJS imports in the single import file are used in both the tests and the app.

from rxjs-tslint-rules.

cartant avatar cartant commented on May 21, 2024

Closing this, as without a repro, there's not much I can do.

However, I realise that I didn't ask whether or not you were using TSLint's no-unused-variable rule. I've since added an issue template with the following note:

Please ensure that TSLint's no-unused-variable rule is not enabled in your configuration (or in any configuration that you extend). That rule has caused problems in the past - as it leaves the TypeScript program in an unstable state - and has a significant number of still-open issues.

from rxjs-tslint-rules.

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.