|
1 | 1 | { |
2 | 2 | "[json]": { |
3 | | - "editor.defaultFormatter": "gplane.dprint2", |
4 | | - "editor.quickSuggestions": { |
5 | | - "strings": true |
6 | | - } |
| 3 | + "editor.defaultFormatter": "gplane.dprint2" |
7 | 4 | }, |
8 | 5 | "[jsonc]": { |
9 | | - "editor.defaultFormatter": "gplane.dprint2", |
10 | | - "editor.quickSuggestions": { |
11 | | - "strings": true |
12 | | - } |
| 6 | + "editor.defaultFormatter": "gplane.dprint2" |
13 | 7 | }, |
14 | 8 | "[typescript]": { |
15 | 9 | "editor.defaultFormatter": "gplane.dprint2" |
|
19 | 13 | "editor.autoIndent": "keep", |
20 | 14 | "editor.defaultFormatter": "gplane.dprint2", |
21 | 15 | "editor.insertSpaces": true, |
22 | | - "editor.quickSuggestions": { |
23 | | - "comments": false, |
24 | | - "other": true, |
25 | | - "strings": true |
26 | | - }, |
27 | 16 | "editor.tabSize": 2 |
28 | 17 | }, |
| 18 | + "editor.codeActionsOnSave": { |
| 19 | + "eslint.autoFix": "never", |
| 20 | + "source.fixAll": "never", |
| 21 | + "source.organizeImports": "never" |
| 22 | + }, |
29 | 23 | "eslint.validate": [ |
30 | 24 | "javascript", |
31 | 25 | "javascriptreact", |
|
36 | 30 | "mdx", |
37 | 31 | "github-actions-workflow" // for GitHub Actions workflow files |
38 | 32 | ], |
39 | | - "editor.codeActionsOnSave": { |
40 | | - "eslint.autoFix": "never", |
41 | | - "source.fixAll": "never", |
42 | | - "source.organizeImports": "never" |
43 | | - }, |
44 | 33 | "eslint.workingDirectories": [ |
45 | 34 | { |
46 | 35 | "changeProcessCWD": true, |
47 | 36 | "mode": "location" |
48 | 37 | }, |
49 | 38 | { |
50 | | - "pattern": "examples/*", |
51 | 39 | "changeProcessCWD": true, |
52 | | - "mode": "auto" |
| 40 | + "mode": "auto", |
| 41 | + "pattern": "examples/*" |
53 | 42 | }, |
54 | 43 | { |
55 | | - "pattern": "website", |
56 | 44 | "changeProcessCWD": true, |
57 | | - "mode": "auto" |
| 45 | + "mode": "auto", |
| 46 | + "pattern": "website" |
58 | 47 | } |
59 | 48 | ], |
60 | | - "mdx.server.enable": true, |
61 | 49 | "files.exclude": { |
62 | 50 | "**/.turbo": true, |
63 | 51 | "*.bundled_*.mjs": true |
64 | 52 | }, |
| 53 | + "mdx.server.enable": true, |
| 54 | + "npm.packageManager": "pnpm", |
65 | 55 | "typescript.preferences.importModuleSpecifier": "non-relative", |
66 | | - "typescript.tsdk": "node_modules/typescript/lib", |
67 | | - "svg.preview.background": "dark-transparent" |
| 56 | + "typescript.tsdk": "node_modules/typescript/lib" |
68 | 57 | } |
0 commit comments