0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-19 11:32:15 +02:00
Anki-Android/.prettierrc
Brayan Oliveira 718b4636c7 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)`
2022-03-17 11:01:04 -05:00

12 lines
206 B
Plaintext

{
"arrowParens": "avoid",
"trailingComma": "all",
"useTabs": false,
"semi": true,
"bracketSpacing": true,
"bracketSameLine": false,
"tabWidth": 4,
"printWidth": 100,
"endOfLine": "auto"
}