1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-12-13 02:01:51 +00:00

Apply formatting to the rest of files

This commit is contained in:
Даниїл Григор'єв 2024-06-20 13:02:02 +03:00
parent 5ff15f3029
commit 2f0a505297
No known key found for this signature in database
GPG Key ID: B890DF16341D8C1D
6 changed files with 423 additions and 429 deletions

View File

@ -1,4 +1,4 @@
<!DOCTYPE html> <!doctype html>
<html> <html>
<head> <head>
<title>shapez</title> <title>shapez</title>
@ -18,5 +18,5 @@
<meta http-equiv="Cache-Control" content="private, max-age=0, no-store, no-cache, must-revalidate" /> <meta http-equiv="Cache-Control" content="private, max-age=0, no-store, no-cache, must-revalidate" />
<meta http-equiv="Expires" content="0" /> <meta http-equiv="Expires" content="0" />
</head> </head>
<body oncontextmenu="return false" style="background: #393747;"></body> <body oncontextmenu="return false" style="background: #393747"></body>
</html> </html>

View File

@ -1,10 +1,6 @@
{ {
"extends": [ "extends": ["@tsconfig/strictest/tsconfig"],
"@tsconfig/strictest/tsconfig" "include": ["./js/**/*"],
],
"include": [
"./js/**/*"
],
"compilerOptions": { "compilerOptions": {
"allowJs": true, "allowJs": true,
"module": "es2022", "module": "es2022",
@ -13,9 +9,7 @@
"target": "ES2022", "target": "ES2022",
/* JSX Compilation */ /* JSX Compilation */
"paths": { "paths": {
"@/*": [ "@/*": ["./js/*"]
"./js/*"
]
}, },
"jsx": "react-jsx", "jsx": "react-jsx",
"jsxImportSource": "@", "jsxImportSource": "@",
@ -28,6 +22,6 @@
"noUncheckedIndexedAccess": false, "noUncheckedIndexedAccess": false,
"strictNullChecks": false, "strictNullChecks": false,
// eslint warns for this // eslint warns for this
"noUnusedLocals": true, "noUnusedLocals": true
} }
} }