Coder Social home page Coder Social logo

Comments (6)

jlongster avatar jlongster commented on May 1, 2024 3

Comments are probably where most of the subtle bugs are right now. They're pretty difficult to get right, but this is definitely problematic. I think it'll take a few weeks to sort out these kinds of bugs, but we'll get there.

from prettier.

jepler avatar jepler commented on May 1, 2024

prettier sure doesn't know what to make of ASCII art that is laid out to the right of the real code, such as this example (input):

//                                           60 chars -->   |
function makeComponent(): int {
  return {                   //                 (__)
    longCall() {             //                 (oo)
      complicatedFunction(   //           /------\/
        importantArgument(), //          / |    ||
        secondaryArgument()  //         *  /\---/\
      );                     //            ~~   ~~
      weirdStyle({ prop: 1 }, 1, 2, 3);
    },
    render() {
      const user = { name: "James" };
      return (
        <div>
          hello ${name}! JSX is<strong>supported</strong>
        </div>
      );
    }
  };
}

but honestly I don't know what you do with devs who insist on that sort of thing; tell them to cut it out I suppose.

from prettier.

acdha avatar acdha commented on May 1, 2024

@jepler I've seen a few cases where someone had some sort of diagram / flowchart which was important but I would think a reasonable position would simply be “Make it a full multi-line comment block”.

from prettier.

jlongster avatar jlongster commented on May 1, 2024

inline comments in all positions are extremely difficult. The case where there inline comments beside function call arguments is a known issue in recast as well, and it actually reclassifies those comments as leading comments (moves them up before the expression). I think right now we copy that behavior sometimes too.

But yes, there are going to be times where there is only so much we can do, and users need to change how they write a specific style so that it formats better. We can make inline comments better to some degree, but I'm not sure how far we can go.

from prettier.

karmatics avatar karmatics commented on May 1, 2024

This one is a rather big issue for me, I tend to use the space to the right for a comment whenever it helps, such as to say what that object property is or what have you

from prettier.

jlongster avatar jlongster commented on May 1, 2024

See above PR

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