Skip to content

Commit 82ac579

Browse files
committed
lint
1 parent 2b173d7 commit 82ac579

File tree

3 files changed

+41
-50
lines changed

3 files changed

+41
-50
lines changed

.vscode/launch.json

Lines changed: 14 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,7 @@
66
"type": "debugpy",
77
"request": "launch",
88
"module": "ingest.postgis_docs",
9-
"args": [
10-
"--version",
11-
"3.5",
12-
"--storage-type",
13-
"file"
14-
],
9+
"args": ["--version", "3.5", "--storage-type", "file"],
1510
"cwd": "${workspaceFolder}",
1611
"python": "${workspaceFolder}/ingest/.venv/bin/python",
1712
"envFile": "${workspaceFolder}/.env",
@@ -22,12 +17,7 @@
2217
"type": "debugpy",
2318
"request": "launch",
2419
"module": "ingest.postgis_docs",
25-
"args": [
26-
"--version",
27-
"3.5",
28-
"--storage-type",
29-
"database"
30-
],
20+
"args": ["--version", "3.5", "--storage-type", "database"],
3121
"cwd": "${workspaceFolder}",
3222
"python": "${workspaceFolder}/ingest/.venv/bin/python",
3323
"envFile": "${workspaceFolder}/.env",
@@ -38,9 +28,7 @@
3828
"type": "debugpy",
3929
"request": "launch",
4030
"module": "ingest.postgres_docs",
41-
"args": [
42-
"17"
43-
],
31+
"args": ["17"],
4432
"cwd": "${workspaceFolder}",
4533
"python": "${workspaceFolder}/ingest/.venv/bin/python",
4634
"envFile": "${workspaceFolder}/.env",
@@ -51,10 +39,7 @@
5139
"type": "debugpy",
5240
"request": "launch",
5341
"module": "ingest.tiger_docs",
54-
"args": [
55-
"--storage-type",
56-
"file"
57-
],
42+
"args": ["--storage-type", "file"],
5843
"cwd": "${workspaceFolder}",
5944
"python": "${workspaceFolder}/ingest/.venv/bin/python",
6045
"envFile": "${workspaceFolder}/.env",
@@ -65,10 +50,7 @@
6550
"type": "debugpy",
6651
"request": "launch",
6752
"module": "ingest.tiger_docs",
68-
"args": [
69-
"--storage-type",
70-
"database"
71-
],
53+
"args": ["--storage-type", "database"],
7254
"cwd": "${workspaceFolder}",
7355
"python": "${workspaceFolder}/ingest/.venv/bin/python",
7456
"envFile": "${workspaceFolder}/.env",
@@ -89,7 +71,10 @@
8971
"envFile": "${workspaceFolder}/.env",
9072
"sourceMaps": true,
9173
"outFiles": ["${workspaceFolder}/dist/**/*.js", "!**/node_modules/**"],
92-
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"],
74+
"resolveSourceMapLocations": [
75+
"${workspaceFolder}/**",
76+
"!**/node_modules/**"
77+
],
9378
"skipFiles": ["<node_internals>/**", "**/node_modules/**"]
9479
},
9580
{
@@ -107,8 +92,11 @@
10792
"envFile": "${workspaceFolder}/.env",
10893
"sourceMaps": true,
10994
"outFiles": ["${workspaceFolder}/dist/**/*.js", "!**/node_modules/**"],
110-
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"],
95+
"resolveSourceMapLocations": [
96+
"${workspaceFolder}/**",
97+
"!**/node_modules/**"
98+
],
11199
"skipFiles": ["<node_internals>/**", "**/node_modules/**"]
112100
}
113101
]
114-
}
102+
}

.vscode/settings.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
{
2-
"biome.lsp.bin": "./mcp/node_modules/@biomejs/biome/bin/biome",
3-
"[typescript]": {
4-
"editor.defaultFormatter": "biomejs.biome",
5-
"editor.formatOnSave": true,
6-
"editor.codeActionsOnSave": {
7-
"source.fixAll.biome": "explicit",
8-
"source.organizeImports.biome": "explicit"
9-
}
10-
},
11-
"[jsonc]": {
12-
"editor.defaultFormatter": "vscode.json-language-features"
13-
},
14-
"[python]": {
15-
"editor.defaultFormatter": "charliermarsh.ruff",
16-
"editor.formatOnSave": true,
17-
"editor.codeActionsOnSave": {
18-
"source.fixAll": "explicit",
19-
"source.organizeImports": "explicit"
20-
}
21-
},
22-
"ruff.lint.enable": true,
23-
"ruff.format.enable": true
24-
}
2+
"biome.lsp.bin": "./mcp/node_modules/@biomejs/biome/bin/biome",
3+
"[typescript]": {
4+
"editor.defaultFormatter": "biomejs.biome",
5+
"editor.formatOnSave": true,
6+
"editor.codeActionsOnSave": {
7+
"source.fixAll.biome": "explicit",
8+
"source.organizeImports.biome": "explicit"
9+
}
10+
},
11+
"[jsonc]": {
12+
"editor.defaultFormatter": "vscode.json-language-features"
13+
},
14+
"[python]": {
15+
"editor.defaultFormatter": "charliermarsh.ruff",
16+
"editor.formatOnSave": true,
17+
"editor.codeActionsOnSave": {
18+
"source.fixAll": "explicit",
19+
"source.organizeImports": "explicit"
20+
}
21+
},
22+
"ruff.lint.enable": true,
23+
"ruff.format.enable": true
24+
}

.vscode/tasks.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@
4242
{
4343
"label": "pg-aiguide MCP - Build Only",
4444
"dependsOrder": "sequence",
45-
"dependsOn": ["pg-aiguide MCP - bun: install", "pg-aiguide MCP - bun: build"],
45+
"dependsOn": [
46+
"pg-aiguide MCP - bun: install",
47+
"pg-aiguide MCP - bun: build"
48+
],
4649
"group": {
4750
"kind": "build",
4851
"isDefault": true

0 commit comments

Comments
 (0)