]> source.dussan.org Git - jquery.git/commitdiff
Build: Make sure `*.cjs` & `*.mjs` files use UNIX line endings as well
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>
Mon, 10 Jul 2023 16:19:52 +0000 (18:19 +0200)
committerMichał Gołębiowski-Owczarek <m.goleb@gmail.com>
Mon, 10 Jul 2023 16:20:25 +0000 (18:20 +0200)
We've had this rule for `*.js` files so far but we now have two new JS
extensions.

Closes gh-5290

(cherry picked from commit 198b41c8c2cd726b875615023b2b37b213040ad3)

.gitattributes

index b7ca95b5b77a91a2e1b6eaf80c2a4a52a99ec378..5832a0194d80654f662f8fda80ada5a7450de165 100644 (file)
@@ -2,4 +2,7 @@
 * text=auto
 
 # JS files must always use LF for tools to work
+# JS files may have mjs or cjs extensions now as well
 *.js eol=lf
+*.cjs eol=lf
+*.mjs eol=lf