Skip to content

Commit ba53368

Browse files
Merge pull request #35 from lugvitc/main
chore: update deployment branch
2 parents 083a6cc + e9eeebc commit ba53368

File tree

110 files changed

+15947
-3830
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+15947
-3830
lines changed

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
build
3+
public

.prettierrc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
2+
"plugins": ["prettier-plugin-tailwindcss"],
23
"tabWidth": 2,
3-
"useTabs": false
4+
"semi": false,
5+
"singleQuote": true,
6+
"trailingComma": "none"
47
}

eslint.config.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ export default [
1414
parserOptions: {
1515
ecmaVersion: 'latest',
1616
ecmaFeatures: { jsx: true },
17-
sourceType: 'module',
18-
},
17+
sourceType: 'module'
18+
}
1919
},
2020
settings: { react: { version: '18.3' } },
2121
plugins: {
2222
react,
2323
'react-hooks': reactHooks,
24-
'react-refresh': reactRefresh,
24+
'react-refresh': reactRefresh
2525
},
2626
rules: {
2727
...js.configs.recommended.rules,
@@ -31,8 +31,8 @@ export default [
3131
'react/jsx-no-target-blank': 'off',
3232
'react-refresh/only-export-components': [
3333
'warn',
34-
{ allowConstantExport: true },
35-
],
36-
},
37-
},
34+
{ allowConstantExport: true }
35+
]
36+
}
37+
}
3838
]

index.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
<!doctype html>
22
<html lang="en">
33
<head>
4+
<!-- <script src="https://unpkg.com/react-scan/dist/auto.global.js"></script> -->
45
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/public/UI/logo2.png" />
6+
<link rel="icon" type="image/svg+xml" href="/UI/logo2.png" />
67
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
78
<title>ENIGMA | A LUGVITC CTF EVENT</title>
8-
<meta name="description" content="A CTF Event Divided into two main segments, a Jeopardy Style CTF and an Attack-Defense Style CTF, participants will face challenges, learn, and compete for exciting prizes.">
9+
<meta
10+
name="description"
11+
content="A CTF Event Divided into two main segments, a Jeopardy Style CTF and an Attack-Defense Style CTF, participants will face challenges, learn, and compete for exciting prizes."
12+
/>
913
</head>
1014
<body>
1115
<div id="root"></div>

0 commit comments

Comments
 (0)