mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 02:15:01 +00:00
Looks like I had a .editorconfig in the project root (not sure how it got there) which was git ignored by my ~/.gitignore. It also turns out that prettier will respect the indent settings in .editorconfig. This sets my `.editorconfig` to use the Prettier default, checks it in, and also reformats all the CSS. Fixes #684
9 lines
134 B
INI
9 lines
134 B
INI
[*.jsx]
|
|
indent_style = space
|
|
indent_size = 2
|
|
[*.js]
|
|
indent_style = space
|
|
indent_size = 2
|
|
[*.css]
|
|
indent_style = space
|
|
indent_size = 2
|