Skip to content

Commit 6af20b7

Browse files
committed
pre-rel
1 parent be60ea5 commit 6af20b7

6 files changed

Lines changed: 2478 additions & 884 deletions

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
.vscode/
33
node_modules/
44
byp yt music/
5-
_PREV/
5+
_PREV/
6+
_FREEZE/_PREV/
7+
_FREEZE/_PREV

.prettierignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Build e dipendenze
2+
node_modules/
3+
dist/
4+
build/
5+
coverage/
6+
7+
# File minificati e bundle
8+
*.min.js
9+
*.bundle.js
10+
11+
# Ignora esplicitamente script esterni di vendor
12+
vendor/
13+
lib/
14+
15+
# File di lock
16+
package-lock.json
17+
yarn.lock
18+
pnpm-lock.yaml
19+
20+
# Varie
21+
.DS_Store
22+
*.log

.prettierrc.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"printWidth": 140,
3+
"tabWidth": 2,
4+
"useTabs": false,
5+
"semi": true,
6+
"singleQuote": true,
7+
"quoteProps": "as-needed",
8+
"trailingComma": "all",
9+
"bracketSpacing": true,
10+
"arrowParens": "always",
11+
"proseWrap": "preserve",
12+
"endOfLine": "lf",
13+
"embeddedLanguageFormatting": "auto"
14+
}

0 commit comments

Comments
 (0)