• starman@programming.dev
      link
      fedilink
      English
      arrow-up
      6
      ·
      edit-2
      6 months ago

      I’d be surprised if there is a serious language that doesn’t come with at least some semi-official style guide.

      Does JavaScript have one?

      Edit: Except google’s style guide

      • 𝒍𝒆𝒎𝒂𝒏𝒏@lemmy.dbzer0.com
        link
        fedilink
        arrow-up
        10
        arrow-down
        1
        ·
        6 months ago

        Edit: Except google’s style guide

        This legit made me laugh lol, Google’s style guides for their longer standing languages are always dismissed, especially their one for C++

        • christophski@feddit.uk
          link
          fedilink
          English
          arrow-up
          6
          ·
          6 months ago

          Not sure if they still do it, but Google’s python code is some of the ugliest python I’ve seen and uses 2-space indentation.

          • To summarize the explanations i’ve come across: It’s tailored to Google’s internal teams maintaining tons of legacy C++ code, doesn’t cover exception handling, and generally has outdated advice best suited for the code they developed in that time period. While their style guide is ideal for maintaining consistency with Google’s existing codebase, someone working on a modern C++ project should consider using the language’s more modern features and STL components

            Something I’d want to note though, someone developing in C++ for an embedded platform or even working on hardware drivers would probably have very lean and mean code which doesn’t conform to a particular style guide, especially ones advising against use of “unsafe” operations.

      • Ephera@lemmy.ml
        link
        fedilink
        arrow-up
        6
        ·
        6 months ago

        Google’s, Mozilla’s and Apple’s style guides are pretty much as official as you’re gonna get here.

        The ‘prettier’ formatter is also rather popular and as such its stylistic choices, although that is of course moreso a hammer than a guide.

      • v0rld@lemmy.world
        link
        fedilink
        arrow-up
        4
        ·
        6 months ago

        Is JavaScript a serious language? /s

        Joking aside: One of Brendan Eich’s books probably contains something resembling a style guide.

      • sloppy_diffuser@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        3
        ·
        edit-2
        6 months ago

        Eslint rules and prettier. I use the AirBnB ruleset as a base close to my personal preferences and then customize to my liking.

        I don’t really have to do any manual formatting. I just save to apply the formatting.

        edit: javascript

  • Nachorella@lemmy.sdf.org
    link
    fedilink
    arrow-up
    20
    arrow-down
    1
    ·
    6 months ago

    Rust has a style guide and comes with a linter. But I don’t think you need to follow it if you don’t want.

    • beefsack@lemmy.world
      cake
      link
      fedilink
      arrow-up
      15
      ·
      6 months ago

      Rust, like the majority of modern languages, has an official formatter which everyone should be using. Formatters are good enough nowadays that everyone should be using them.

  • Aa!@lemmy.world
    link
    fedilink
    arrow-up
    15
    ·
    6 months ago

    I’m fond of Go, which comes with its own auto formatter. It eliminates all arguments over style and format.

  • DrDeadCrash@programming.dev
    link
    fedilink
    arrow-up
    12
    ·
    6 months ago

    If you’re using visual studio (2022 is current) the idiomatic styling will be mostly correct by default (Ctrl k,e will reformat).

    • brian@programming.dev
      link
      fedilink
      arrow-up
      2
      ·
      edit-2
      6 months ago

      I’ve found it to be less strict than I’d prefer. Things like whether parameters are aligned or indented, whether or not the first one is on its own line, what statements are indented in fluent calls that have blocks, etc.

      A lot of other formatters (prettier, anything for python, etc) force something consistent in those cases, whereas it seems like the dotnet formatter prefers to leave things as they were.

      I’d love for it to be more opinionated and heavy handed if anyone has suggestions

  • Kogasa@programming.dev
    link
    fedilink
    arrow-up
    8
    ·
    6 months ago

    For practical advice, I recommend starting a project with dotnet new editorconfig which covers many of the .NET coding conventions. If you want more strict standards you can use StyleCop, but you will need to configure it a bit to be consistent with the .NET conventions.

  • nephs
    link
    fedilink
    arrow-up
    2
    ·
    6 months ago

    Javascript has airbnb style guide, enforceable through eslint. There’s also react related eslint extensions to give you a lot of best practices to follow.

    There’s also prettier, which is just about formatting.

    • brian@programming.dev
      link
      fedilink
      arrow-up
      4
      arrow-down
      1
      ·
      6 months ago

      I refuse to believe that people use a php style guide. I have yet to open a php file in the course of any job that doesn’t mix tabs and spaces arbitrarily on top of numerous other horrors.

      Luckily it’s not often that I have to, so sample size may play in a bit…

  • amio@kbin.social
    link
    fedilink
    arrow-up
    1
    ·
    6 months ago

    Sort of. Python is a lot more ceremonious about its PEPs or whatever, but there are official naming guidelines for .NET in general at least. The rest of it falls more under the general “this and that is considered ‘good’ code, this and that is not”. You could prefer ancient-style C# or heavily functional C#, there’s the SOLID stuff that applies both generally and specifically to OOP, etc

  • Ephera@lemmy.ml
    link
    fedilink
    arrow-up
    1
    ·
    6 months ago

    In my experience, they’re rarely as strictly enforced as e.g. flake8 does it for Python, but yeah, there is usually some resource suggesting a code style. If all else fails, you can look at some of the code the language authors have written. They’ll usually have developed a rather consistent style…

  • burliman@lemmy.today
    link
    fedilink
    arrow-up
    1
    ·
    6 months ago

    C# has the Microsoft coding standards that are most accepted. PHP has the PSR standards. JavaScript has pretty much nothing and is the Wild West.

    Those are the only ones I know about.