Update prettier to use automatic line endings
This commit is contained in:
parent
a9fdb376fe
commit
d5bc855114
2 changed files with 8 additions and 3 deletions
|
|
@ -3,5 +3,6 @@
|
||||||
"semi": true,
|
"semi": true,
|
||||||
"singleQuote": false,
|
"singleQuote": false,
|
||||||
"printWidth": 100,
|
"printWidth": 100,
|
||||||
"tabWidth": 2
|
"tabWidth": 2,
|
||||||
|
"endOfLine": "auto"
|
||||||
}
|
}
|
||||||
|
|
@ -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" />
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue