1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-12-11 09:11:50 +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>
<head>
<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="Expires" content="0" />
</head>
<body oncontextmenu="return false" style="background: #393747;"></body>
<body oncontextmenu="return false" style="background: #393747"></body>
</html>

View File

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