Changes between Initial Version and Version 2 of Ticket #35007


Ignore:
Timestamp:
Nov 30, 2023, 6:52:31 AM (6 months ago)
Author:
Natalia Bidart
Comment:

The forum topic has had very positive reactions, accepting.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35007

    • Property Owner changed from nobody to Tom Carrick
    • Property Status newassigned
    • Property Triage Stage UnreviewedAccepted
  • Ticket #35007 – Description

    initial v2  
    1 https://forum.djangoproject.com/t/adding-a-formatter-for-css-js/25754
     1From https://forum.djangoproject.com/t/adding-a-formatter-for-css-js/25754:
     2
     3The idea is to add formatting for CSS and JS.
     4
     5For motivation, I find myself fairly often in the admin CSS (especially lately) and it’s reasonably laid out for the most part, but there are things that are a little off. Sometimes the indentation is different from the rest of the file, for example. The JS is in a bit worse shape I think, some of the files have whitespace issues. These could be fixed but it would be better to enforce them in a way that’s easier to review, so I think a formatter makes sense here. What’s annoying (for me) is that when editing files, sometimes my editor “fixes” the issues for me, then I have to revert them and save without formatting. If I don’t spot my editor’s work, it’s more annoying to fix. Of course I could turn this stuff off somewhere, but if it’s annoying for me I’m sure it’ll be annoying for others as well.
     6
     7I’m open to suggestions, but Thibaud suggested prettier, and I also use it myself. It doesn’t really require any configuration, though is configurable if people do have strong opinions.
     8
     9But barring differing opinions there, the process would be something like:
     10
     11Make a PR with three commits. The first sets up the machinery, installs prettier, adds to pre-commit, etc. The second does the work and the third adds the second commit to .git-blame-ignore-revs. As far as I know, the same as when black was set up.
     12
Back to Top