forked from aipictors/aipictors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
111 lines (111 loc) · 2.4 KB
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"terminal.integrated.env.windows": {
"PSExecutionPolicyPreference": "RemoteSigned"
},
"cSpell.words": [
"adsbygoogle",
"adsense",
"aipictors",
"denoising",
"favorited",
"followee",
"followees",
"immer",
"lucide",
"menlo",
"noto",
"ourt",
"pixelify",
"prompton",
"scta",
"shadcn",
"sonner",
"usehooks",
"xstate"
],
"[typescript][typescriptreact][json][jsonc][css]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "biomejs.biome",
"editor.codeActionsOnSave": {
"source.organizeImports.biome": "always",
"quickfix.biome": "explicit"
}
},
"files.associations": {
"*.svg": "html",
"*.xml": "html",
"*.css": "tailwindcss"
},
"files.exclude": {
"**/node_modules": true,
"*.lock": true,
"*.log": true,
"*.tsbuildinfo": true,
".firebase": true,
".idea": true,
".sentryclirc": true,
".wrangler": true,
"build": true,
"build-storybook.log": true,
"bun.lockb": true,
"dist": true
},
"search.exclude": {
"app/graphql-env.d.ts": true,
"public": true
},
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.preferences.autoImportFileExcludePatterns": [
"@emotion",
"@radix-ui",
"postcss",
"process",
"react-day-picker",
"tailwind-merge",
"tailwindcss",
"graphql"
],
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.enablePromptUseWorkspaceTsdk": true,
"todo-tree.regex.regex": "(?:(?://|#|<!--|;|/\\*\\*?|\\*)\\s*($TAGS)|^\\s*- \\[ \\])",
"todo-tree.general.tags": [
"TODO",
"TODO_2024_07",
"TODO_2024_08",
"TODO_2024_09",
"TODO_2024_10",
"TODO_2024_11",
"TODO_2024_12",
"TODO_2025_01"
],
"todo-tree.highlights.customHighlight": {
"TODO_2024_07": {
"background": "fuchsia",
"iconColour": "red"
},
"TODO_2024_08": {
"background": "fuchsia",
"iconColour": "red"
},
"TODO_2024_09": {
"background": "fuchsia",
"iconColour": "red"
},
"TODO_2024_10": {
"background": "fuchsia",
"iconColour": "red"
},
"TODO_2024_11": {
"background": "fuchsia",
"iconColour": "red"
},
"TODO_2024_12": {
"background": "fuchsia",
"iconColour": "red"
},
"TODO_2025_01": {
"background": "fuchsia",
"iconColour": "red"
}
}
}