Giter VIP home page Giter VIP logo

Comments (5)

not-an-aardvark avatar not-an-aardvark commented on July 27, 2024

I wouldn't mind doing this in theory, but it feels like the helper functions are sufficiently small and eslint-specific that it wouldn't be worthwhile. For example, all of the helpers use getLocFromIndex, context, and fixer, which are ESLint APIs and (as far as I know) have no direct equivalent in tslint.

I don't think your proposed interface would work, because something like reportInsert would need to have some way of actually reporting an error, and that can't happen unless they either return a value or accept a report function.

from eslint-plugin-prettier.

ikatyang avatar ikatyang commented on July 27, 2024

The context is not a necessary argument for reporters, for example if there is the suggested API:

return {
  Program() {
    if (!prettier) {
      // Prettier is expensive to load, so only load it if needed.
      prettier = require('prettier');
    }
    const prettierSource = prettier.format(source, prettierOptions);
    if (source !== prettierSource) {
      suggestedAPI.reportDifferences(source, prettierSource, {
        reportInsert: (...args) => reportInsert(context, ...args),
        reportDelete: (...args) => reportDelete(context, ...args),
        reportReplace: (...args) => reportReplace(context, ...args),
      });
    }
  }
};

We can call context as a contextual value so that it wouldn't have to pass in reporters directly.

For TSLint vs ESLint API, see this.

If you still think my proposed interface wouldn't work, I can send a PR here to show what it'd be in my proposal.

from eslint-plugin-prettier.

ikatyang avatar ikatyang commented on July 27, 2024

See #40 for my proposal

from eslint-plugin-prettier.

not-an-aardvark avatar not-an-aardvark commented on July 27, 2024

cc @zertosh, any thoughts on this?

from eslint-plugin-prettier.

zertosh avatar zertosh commented on July 27, 2024

Sounds good to me!

from eslint-plugin-prettier.

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.