Skip to content

Commit 06c9f0b

Browse files
authored
Create dashboard (#3)
1 parent 2ffa00c commit 06c9f0b

File tree

16 files changed

+5340
-5100
lines changed

16 files changed

+5340
-5100
lines changed

pill_mate/frontend/eslint.config.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import js from '@eslint/js'
2-
import globals from 'globals'
3-
import reactHooks from 'eslint-plugin-react-hooks'
4-
import reactRefresh from 'eslint-plugin-react-refresh'
5-
import tseslint from 'typescript-eslint'
6-
import importPlugin from 'eslint-plugin-import'
1+
import js from '@eslint/js';
2+
import globals from 'globals';
3+
import reactHooks from 'eslint-plugin-react-hooks';
4+
import reactRefresh from 'eslint-plugin-react-refresh';
5+
import tseslint from 'typescript-eslint';
6+
import importPlugin from 'eslint-plugin-import';
77

88
export default tseslint.config(
99
{ ignores: ['dist'] },
@@ -26,7 +26,7 @@ export default tseslint.config(
2626
'no-console': 'error',
2727
'max-len': ['error', { code: 100 }],
2828
indent: ['error', 4],
29-
semi: ['error', 'never'],
29+
semi: ['error', 'always'],
3030
quotes: ['error', 'single'],
3131
'comma-dangle': ['error', 'always-multiline'],
3232
'no-trailing-spaces': ['error'],
@@ -38,4 +38,4 @@ export default tseslint.config(
3838
],
3939
},
4040
},
41-
)
41+
);

pill_mate/frontend/index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<!doctype html>
22
<html lang="fr">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
</head>
7-
<body>
8-
<div id="root"></div>
9-
<script type="module" src="./src/main.tsx"></script>
10-
</body>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
</head>
7+
<body>
8+
<div id="root"></div>
9+
<script type="module" src="./src/main.tsx"></script>
10+
</body>
1111
</html>

0 commit comments

Comments
 (0)