Skip to content

Commit a3f33e5

Browse files
committed
Initial commit. AudioVisualizer + LiveAudioVisualizer
1 parent ba9e3f8 commit a3f33e5

File tree

17 files changed

+5709
-0
lines changed

17 files changed

+5709
-0
lines changed

.eslintrc.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"extends": [
7+
"plugin:react/recommended",
8+
"plugin:react-hooks/recommended",
9+
"standard-with-typescript",
10+
"plugin:prettier/recommended"
11+
],
12+
"overrides": [
13+
],
14+
"parserOptions": {
15+
"ecmaVersion": "latest",
16+
"sourceType": "module",
17+
"ecmaFeatures": {
18+
"jsx": true
19+
},
20+
"project": "tsconfig.json"
21+
},
22+
"plugins": [
23+
"react"
24+
],
25+
"rules": {
26+
"prettier/prettier": [
27+
"error",
28+
{
29+
// Prettier config
30+
"endOfLine": "lf",
31+
"semi": true,
32+
"singleQuote": false,
33+
"tabWidth": 2,
34+
"trailingComma": "es5"
35+
}
36+
],
37+
"react/react-in-jsx-scope": "off",
38+
"react-hooks/exhaustive-deps": "off",
39+
"@typescript-eslint/strict-boolean-expressions": "off",
40+
"@typescript-eslint/no-floating-promises": "off"
41+
},
42+
"ignorePatterns": ["src/main.tsx", "src/vite-env.d.ts"]
43+
}

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Vite + React + TS</title>
8+
</head>
9+
<body>
10+
<div id="root"></div>
11+
<script type="module" src="/src/main.tsx"></script>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)