Further tuning the formatting and linting rules

This commit is contained in:
Imbus 2024-02-13 15:02:41 +01:00
parent 4b156d6bbf
commit 2632aa458c
4 changed files with 1414 additions and 3 deletions

View file

@ -9,10 +9,10 @@ function App(): JSX.Element {
return (
<>
<div>
<a href="https://vitejs.dev" target="_blank">
<a href="https://vitejs.dev" target="_blank" rel="noreferrer">
<img src={viteLogo} className="logo" alt="Vite logo" />
</a>
<a href="https://react.dev" target="_blank">
<a href="https://react.dev" target="_blank" rel="noreferrer">
<img src={reactLogo} className="logo react" alt="React logo" />
</a>
</div>
@ -20,7 +20,7 @@ function App(): JSX.Element {
<div className="card">
<button
onClick={() => {
setCount((count) => count + 1);
setCount((count): number => count + 1);
}}
>
count is {count}