Skip to content

Commit

Permalink
Implemented Time Travel
Browse files Browse the repository at this point in the history
Signed-off-by: Lindjunne Gerard Montenegro II <[email protected]>
  • Loading branch information
SiNONiMiTY committed Oct 23, 2022
1 parent 9069989 commit fa83af6
Show file tree
Hide file tree
Showing 7 changed files with 1,535 additions and 121 deletions.
29 changes: 29 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
env:
browser: true
es2022: true
extends:
- eslint:recommended
- plugin:@typescript-eslint/recommended
- plugin:react/recommended
- plugin:react-hooks/recommended
overrides: []
parser: '@typescript-eslint/parser'
parserOptions:
ecmaVersion: latest
sourceType: module
plugins:
- '@typescript-eslint'
- react
- react-hooks
rules:
indent:
- error
- 4
eqeqeq:
- error
semi:
- error
- never
quotes:
- error
- single
6 changes: 6 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"ms-vscode.vscode-typescript-next",
"dbaeumer.vscode-eslint",
]
}
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<html lang="en">

<head>
<title>TicTacToe | Vite + React + TS</title>
<meta charset="UTF-8" />
<!-- <link rel="icon" type="image/svg+xml" href="/vite.svg" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<script defer src="/src/index.tsx" type="module"></script>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>

</html>
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@
"devDependencies": {
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@vitejs/plugin-react": "^2.1.0",
"eslint": "^8.26.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "^4.8.4",
"vite": "^3.1.8"
}
Expand Down
Loading

0 comments on commit fa83af6

Please sign in to comment.