Skip to content

Commit e6d53a5

Browse files
config updates
1 parent 7b118de commit e6d53a5

3 files changed

Lines changed: 45 additions & 4 deletions

File tree

.gitignore

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/bootstrap/ssr
2+
/node_modules
3+
/node_server/node_modules
4+
/node_server/logs/*
5+
6+
/docs
7+
8+
/auth.json
9+
/.claude
10+
/.history
11+
/.fleet
12+
/.idea
13+
/.nova
14+
/.knit
15+
/.zed
16+
/.worktrees
17+
knit.lock
18+
.stylelintcache
19+
120
# Logs
221
logs
322
*.log
@@ -7,13 +26,12 @@ yarn-error.log*
726
pnpm-debug.log*
827
lerna-debug.log*
928

10-
node_modules
11-
docs
29+
30+
1231
dist-ssr
1332
*.local
1433

1534
# Editor directories and files
16-
.vscode/*
1735
.history/*
1836
!.vscode/extensions.json
1937
.idea
@@ -23,6 +41,12 @@ dist-ssr
2341
*.njsproj
2442
*.sln
2543
*.sw?
44+
.claude/*
2645

2746

2847
src/plugin/**/*.bk.*
48+
49+
# Temp files and directories
50+
*__TEMP.*
51+
*.TEMP.*
52+
*__TEMP/

.vscode/extensions.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
{
2-
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
2+
"recommendations": [
3+
"vuetifyjs.vuetify-vscode",
4+
"vue.volar",
5+
"Vue.vscode-typescript-vue-plugin"
6+
]
37
}

.vscode/settings.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"explorer.fileNesting.enabled": true,
3+
"explorer.fileNesting.patterns": {
4+
"*.ts": "${capture}.js, ${capture}.js.map, ${capture}.d.ts",
5+
".env": ".env.*, .envrc",
6+
".prettierrc.js": ".prettierrc.*, .prettier*",
7+
".eslintrc.js": ".eslintrc-auto-import.json, .prettierrc.*, .prettier*",
8+
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, .npmrc, .nvmrc, .node-version",
9+
"stylelint.config.js": "postcss.config.js",
10+
"tsconfig.json": "tsconfig.*.json",
11+
"vite.config.mts": "vite.build.config.mts",
12+
}
13+
}

0 commit comments

Comments
 (0)