Update prettier to use automatic line endings

This commit is contained in:
Joe Knapper 2026-03-09 16:18:45 +00:00
parent a9fdb376fe
commit d5bc855114
2 changed files with 8 additions and 3 deletions

View file

@ -3,5 +3,6 @@
"semi": true, "semi": true,
"singleQuote": false, "singleQuote": false,
"printWidth": 100, "printWidth": 100,
"tabWidth": 2 "tabWidth": 2,
"endOfLine": "auto"
} }

View file

@ -34,8 +34,12 @@
@animationend="animationEnd" @animationend="animationEnd"
/> />
<div class="spinner-buttons"> <div class="spinner-buttons">
<button type="button" tabindex="-1" @click="increment(1)" @mousedown="spinnerClick"></button> <button type="button" tabindex="-1" @click="increment(1)" @mousedown="spinnerClick">
<button type="button" tabindex="-1" @click="increment(-1)" @mousedown="spinnerClick"></button>
</button>
<button type="button" tabindex="-1" @click="increment(-1)" @mousedown="spinnerClick">
</button>
</div> </div>
</div> </div>
<sync-property-button @click="requestUpdate" /> <sync-property-button @click="requestUpdate" />