0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-19 19:42:17 +02:00

Change .prettierrc endOfLine to auto

On Windows, conflict between git's CRLF normalization and prettier's was generating EOL diff
To solve it, this changes `endOfLine` to `auto`, which does:
`Maintain existing line endings (mixed values within one file are normalised by looking at what’s used after the first line)`
This commit is contained in:
Brayan Oliveira 2022-03-17 12:44:16 -03:00 committed by Mike Hardy
parent 2fc6d050ce
commit 718b4636c7

View File

@ -6,5 +6,6 @@
"bracketSpacing": true, "bracketSpacing": true,
"bracketSameLine": false, "bracketSameLine": false,
"tabWidth": 4, "tabWidth": 4,
"printWidth": 100 "printWidth": 100,
"endOfLine": "auto"
} }