Coder Social home page Coder Social logo

Comments (4)

DavHau avatar DavHau commented on June 11, 2024 1

Or maybe it should add \n after the =:

let
  nix =
    if !buildNix then null else
    buildRacketNix;
in
{ }

In my opinion yes. Whenever a = is followed by an expression spanning multiple lines, there should always be a \n after the =. Because otherwise those lines cannot be logically aligned correctly to each other. Especially with larger expressions this is very important for readability.

Also I totally think that if/else should almost always be formatted like this:

if bool_expression1 then
  indented_child_expression1
else if bool_expression2 then
  indented_child_expression2
else
  indented_child_expression3

Then again, there is the question of how much freedom the developer should be given. There are always some special cases where an alternative format can make sense.

from nixpkgs-fmt.

r-burns avatar r-burns commented on June 11, 2024

Alternatively, maybe nixpkgs-fmt should move the trailing else to the next line before autoindenting. It appears that newline-before-else is much more common:

$ rg 'else$' | wc -l
1894

$ rg '^ *else' | wc -l
3870

Most of the cases of newline-after-else are actually because the else keyword is alone on the line.

$ rg '^ *else$' | wc -l
1193

from nixpkgs-fmt.

zimbatm avatar zimbatm commented on June 11, 2024

Or maybe it should add \n after the =:

let
  nix =
    if !buildNix then null else
    buildRacketNix;
in
{ }

from nixpkgs-fmt.

zimbatm avatar zimbatm commented on June 11, 2024

I agree that the current re-formatting is not ideal.

from nixpkgs-fmt.

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.