Correct LF vs CRLF instruction in Windows development docs (#11848)

pull/11850/head
Sage Abdullah 2024-04-15 14:35:35 +07:00 zatwierdzone przez Matt Westcott
rodzic bd1a81d88f
commit e653a4afbb
3 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -55,6 +55,7 @@ Changelog
* Docs: Document risk of XSS attacks on document upload (Matt Westcott, with thanks to Georgios Roumeliotis of TwelveSec for the original report)
* Docs: Add clarity to how custom StreamField validation works (Tibor Leupold)
* Docs: Add additional reference to the `wagtail_update_image_renditions` management command on the using images page (LB (Ben) Johnston)
* Docs: Correct information about line endings in Window development docs (Sage Abdullah)
* Maintenance: Move RichText HTML whitelist parser to use the faster, built in `html.parser` (Jake Howard)
* Maintenance: Remove duplicate 'path' in default_exclude_fields_in_copy (Ramchandra Shahi Thakuri)
* Maintenance: Update unit tests to always use the faster, built in `html.parser` & remove `html5lib` dependency (Jake Howard)

Wyświetl plik

@ -62,10 +62,9 @@ If you are confident with Python and Node development on Windows and wish to pro
We recommend [Chocolatey](https://chocolatey.org/install) for managing packages in Windows. Once Chocolatey is installed you can then install the [`make`](https://community.chocolatey.org/packages/make) utility in order to run common build and development commands.
To effectively collaborate with other developers on different operating systems, we use CRLF to handle our line endings. You can configure this in Git using:
We use LF for our line endings. To effectively collaborate with other developers on different operating systems, use Git's automatic CRLF handling by setting the `core.autocrlf` config to `true`:
```doscon
# Configures how Git handles line endings and sets the value to True
git config --global core.autocrlf true
```

Wyświetl plik

@ -74,6 +74,7 @@ depth: 1
* Document risk of XSS attacks on document upload (Matt Westcott, with thanks to Georgios Roumeliotis of TwelveSec for the original report)
* Add clarity to how custom [StreamField validation](streamfield_validation) works (Tibor Leupold)
* Add additional reference to the [`wagtail_update_image_renditions`](wagtail_update_image_renditions) management command on the [using images](regenerate_image_renditions) page (LB (Ben) Johnston)
* Correct information about line endings in Window development docs (Sage Abdullah)
### Maintenance