Using a formatter for formatting (instead of lint rules) #65993
Replies: 6 comments 22 replies
-
A few quick points re prettier v dprint from experience. Dprint is nowhere near as strict as prettier is - it allows a lot of variations in formatting an expression statement. In regards to DevX - it's highly unlikely contributors have the dprint extension installed - meaning they won't get format on save and will have to rely on CLI formatting instead. Not a massive deal but it is something to consider. OTOH a contributor is much more likely to have the prettier extension installed. In regards to performance - a lot of people tout runtime performance as a big negative for prettier. However one big counter point to this is that if you're doing things correctly then you should only ever be running your formatter in For some context I've spent a lot of time working with prettier at scale (I did several prettier version bumps on Meta's >800k file megarepo) and perf wasn't ever an issue. It does suck the few times you need to do an That aside - really happy to see this. Moving off of TSLint will be huge in of itself - and having formatter for the codebase will be great for keeping changes down (I've seen many people tweak indentation and destroy diffs!) |
Beta Was this translation helpful? Give feedback.
-
Status update (July 31st 2023): we've received only positive feedback on this proposal. So we're going to go for it. 🚀 On the dprint side, @dsherret added nested configuration support (👏 thank you!) in dprint/dprint#719. That means we can specify using tabs in existing My plan now is to:
Note that we've only received explicit feedback from a couple dozen individuals. That's a relatively small fraction of even the active pool of DefinitelyTyped contributors. I'll be sure to include "please give feedback even at this stage in the process" notes in all messaging to make it clear that we do still want feedback. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
I did some shell scripting to find the biggest packages on DT. Running on macOS after removing all Directories >1Mdu -sh types/* | grep M | sort -nr
Files >1Mfind types ~+ -type f | xargs du -sh | sort -nr
|
Beta Was this translation helpful? Give feedback.
-
Now that folks have started talking about formatting preferences (#65993 (reply in thread) onward, #66238 (comment)), here's a comparison of how different overrides in #66235's
Before each alternative, I ran
@dsherret, @jakebailey, and @sandersn have all privately mentioned a desire to switch to double quotes. We could certainly do that. edit: emphasis on the "could", as in this is a theoretical possibility |
Beta Was this translation helpful? Give feedback.
-
This is a great idea. Some suggestions:
|
Beta Was this translation helpful? Give feedback.
-
Update (October 9th, 2023): This work is done! As of #66235's merge on October 6th, all DefinitelyTyped's types files are formatted with dprint (with a small number of temporary exceptions for build issues).
Context
👋 Hi all! I've been working with the TypeScript team on overhauling DefinitelyTyped's usage of formatting and linting tools. Alongside the effort to finally migrate from TSLint to ESLint (https://typescript-eslint.io/linting/troubleshooting/tslint -> microsoft/DefinitelyTyped-tools#648), we'd like to align with how much of the industry & many linter maintainers recommend using a formatter vs. a linter (myself included).
This is a surfacing of a plan we've formulated that we think will get DefinitelyTyped onto using a proper formatter for formatting. I'd very much like to see the community's reaction: does this seem reasonable to you? What edge cases are we missing? Will this offend your sensibilities as a programmer?
DefinitelyTyped's Formatting Context
DefinitelyTyped today only utilizes a few ESLint rules for code formatting. It does not use Prettier, dprint, or other dedicated formatting tools.
We'd like to move DefinitelyTyped onto one of those tools for the following benefits:
The Plan
Adds checking in formatting fixes to the merge botmaster
.git-blame-ignore-revs
file to ignore the large formatting commitsFormatter Choice: dprint
The two most common standalone formatters in the JavaScript/TypeScript ecosystem today are:
We plan on using dprint for formatting for its superior performance.
A quick comparison of running both tools and pprettier on DefinitelyTyped shows a 10 second vs. minutes-scale difference:
dprint is also able to use a cacheable file cache, which drops times down to under a second. We may look into using it in CI as a followup performance optimization.
Additionally, running dprint on as large a repository as DefinitelyTyped will provide it and SWC with helpful community dogfooding (e.g. swc-project/swc#7187, dprint/dprint-plugin-typescript#533). Note that dprint is essentially
deno fmt
, so we're not worried about its ability to handle all of DefinitelyTyped.Formatting Configuration
DefinitelyTyped today already has a
.prettierrc.json
Prettier configuration file:Our plan is to use the closest equivalent dprint TypeScript configuration. This proposal does not include work to change those settings. No set of settings is perfect or will satisfy all users.
Edit August 29th: Following #66238 (comment) & #66238 (comment), I removed the style overrides.
FAQs
Explainer: When Formatting Runs
Pull request CI builds will not be blocked on formatting, so as to not inconvenience contributors who don't run a formatter. However,
two parts of the plan ensure thethemaster
branch stays fully formattedmaster
branch will be fully formatted most of the time:Most PRs are merged by the DT bot: which can apply apply formatting on each PR as part of its existing merge process.For manual merges done by maintainers: the action that runs on merges toThe action that runs after merges tomaster
will capture any formatting mishapsmaster
will quickly format it if needed.As a follow-up, we may want to create a general-purpose PR bot to make it easier for contributors to apply formatting to a PR on their behalf. This is out of scope for the current proposal.
Can Files Opt Out of Formatting?
Yes, but considering the advantages mentioned earlier in this proposal, we strongly advise against doing so. Individual files that are auto-generated can use configuration file
excludes
and/or// dprint-ignore-file
file ignore comments to disable the formatter.Edit July 31st, 2023: As of dprint/dprint#719, dprint also supports nested configurations. Individual
types/
directories can reconfigure dprint if they absolutely need. We'll set this up for directories that are fully auto-generated.Is Formatting Performance Important?
Most users would not notice a difference in performance between dprint and Prettier, as most files aren't large enough (thousands of lines long) to cause a significant difference. However, the CI runs on the
master
branch should ideally be as fast as possible to minimize the chance of users branching off amaster
commit with incorrectly unformatted code.Tabs or Spaces?
One potential side effect of switching to a dedicated formatter is that individual projects that prefer using tabs for accessibility may find it harder to do so in the project. We'll seed the configuration file to disable formatting for existing packages that use tabs. Please let us know if that's not enough: we can try to brainstorm a workaround, such as adding the ability to have project-specific overrides to the formatter.
Edit July 31st, 2023: As of dprint/dprint#719, dprint also supports nested configurations. Individual
types/
directories can reconfigure dprint if they prefer need. Our initial PR that converts DefinitelyTyped to dprint will use tabs in all packages that seem to prefer them.Today, only 19 packages use tabs - as determined by finding all
types/
directories that have any file with a number of\n\t
s greater than 1% of its total\n
count. Therefore, this proposal is not changing how the vast majority (>99.9%) of types packages use spaces. Doing so is a potential large follow-up task we can look into.Script run to find types packages that use tabs
Package names logged by that script
What About
.json
and.md
Files?This proposal doesn't intend to format those files with the formatter. We may look into that as a followup.
What's the Difference Between a Formatter and a Linter?
A formatter quickly (re-)formats code without adjusting any code logic. A linter runs a set of discrete rules that each flag -and optionally suggest fixes- for a specific kind of code defect.
See https://github.com/readme/guides/formatters-linters-compilers for more context.
Why split up the PRs so much?
Splitting up changes is easier on tooling:
Our splitting strategy was:
Thanks
This proposal came out of a group thread with discussion from:
Appreciation in particular to Jake Bailey and Nathan Shively-Sanders for advising from the TypeScript team, and David Sherret from dprint.
Beta Was this translation helpful? Give feedback.
All reactions