Skip to content

Commit 26eb0c0

Browse files
committed
ft: added license
1 parent ded2b52 commit 26eb0c0

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

biome.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@
44
"files": {
55
"include": ["src", "test"],
66
"ignoreUnknown": false,
7-
"ignore": [
8-
"**/node_modules",
9-
"dist/**"
10-
]
7+
"ignore": ["**/node_modules", "dist/**", "frontend/src/main.tsx"]
118
},
129
"formatter": {
1310
"enabled": true,

frontend/src/main.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { StrictMode } from 'react'
2-
import { createRoot } from 'react-dom/client'
3-
import './index.css'
4-
import App from './App.tsx'
1+
import { StrictMode } from 'react';
2+
import { createRoot } from 'react-dom/client';
3+
import './index.css';
4+
import App from './App.tsx';
55

66
createRoot(document.getElementById('root')!).render(
77
<StrictMode>
88
<App />
99
</StrictMode>,
10-
)
10+
);

0 commit comments

Comments
 (0)