Coder Social home page Coder Social logo

Comments (9)

buzinas avatar buzinas commented on June 9, 2024

Can you explain how it affects this library, please?

from tslint-eslint-rules.

unional avatar unional commented on June 9, 2024

Currently I'm discussing with @jkillian about how to handle rulesDirectory.
See this comment: palantir/tslint#1016 (comment)
The issue is the relative path through node_modules as it is different between npm 2/3+.

My opinion is that consumer should not reference things in node_modules directly as in your example in README

{
  "rulesDirectory": "node_modules/tslint-eslint-rules/dist/rules"
}

If use the extends feature, then it can be a local path, i.e.:
palantir/tslint#1016 (comment)

Right now I'm waiting for palantir/tslint#1035 to goes in so I can refactor the code. Please feel free to join the discussion. 🍺

from tslint-eslint-rules.

buzinas avatar buzinas commented on June 9, 2024

Can't your project be a peer dependency to mine, instead of a true dependency?

from tslint-eslint-rules.

unional avatar unional commented on June 9, 2024

If it is a peer dependency, that means the user need to aware of using tslint-eslint-rules and also do the rulesDirectory: "node_modules/tslint-eslint-rules/dist/rules" themselves in order for it to work.

i.e., the user need to:

npm i tslint tslint-config-unional tslint-eslint-rules
{
  "extends": "tslint-config-unional",
  "rulesDirectory": "node_modules/tslint-eslint-rules/dist/rules"
}

instead of:

npm i tslint tslint-config-unional
{
  "extends": "tslint-config-unional"
}

from tslint-eslint-rules.

buzinas avatar buzinas commented on June 9, 2024

Merged #59, and hopefully @jkillian will be handling that inside TSLint.

from tslint-eslint-rules.

unional avatar unional commented on June 9, 2024

extends has landed. Now your user can reference your package through:

{
  "extends": "tslint-eslint-rules"
}

What you need is in your own tslint.json:

{
  "rulesDirectory": "./dist/rules"
}

Cheers,
Unional

🌹

from tslint-eslint-rules.

buzinas avatar buzinas commented on June 9, 2024

Thanks, @unional! Good job :)

from tslint-eslint-rules.

jkillian avatar jkillian commented on June 9, 2024

Just to follow up on this, might be worth making this small tweak! It shouldn't break anything for users who are using your package in other ways, but will let new users use extends if they want to. @unional want to make a PR for this?

from tslint-eslint-rules.

unional avatar unional commented on June 9, 2024

I'm busy until end of next week. Can do it by then if it is not done sooner. :)

from tslint-eslint-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.