Welcome to Astro
9 |
10 | Check out the src/pages
directory to get started.
11 | Code Challenge: Tweak the "Welcome to Astro" message above.
12 |
-
14 |
15 | Please vote/rate and star this project to show your support. 16 | ❤️ 17 |
18 | 19 | 20 |
63 |
68 |
73 |
90 |
95 |
100 |
14 | Commodo esse enim officia eu aute non consequat eu ad occaecat. Elit adipisicing et dolore cillum dolore et irure 15 | ullamco sint irure Lorem consequat nisi duis. Ullamco ipsum aute sit laboris minim ex pariatur fugiat adipisicing 16 | cillum. 17 |
18 |21 | Hell World 22 |
23 |
10 | Check out the src/pages
directory to get started.
11 | Code Challenge: Tweak the "Welcome to Astro" message above.
12 |
15 | Please vote/rate and star this project to show your support. 16 | ❤️ 17 |
18 | 19 | 20 |Setting | 54 |Description | 55 |Type | 56 |Default | 57 |
---|---|---|---|
cssvar.enable |
62 | 63 | Enable/Disable extension for a workspace/folder 64 | | 65 |boolean |
66 | 67 | true
68 | 69 | |
70 |
cssvar.files |
73 | 74 | Relative/Absolute paths to CSS variable source files 75 | | 76 |string[] |
77 | 78 | ["**/*.css"]
79 | 80 | |
81 |
cssvar.ignore |
84 | 85 | Relative/Absolute paths to file/folder sources to be ignored 86 | | 87 |string[] |
88 | 89 | ["**/node_modules/**"]
90 | 91 | |
92 |
95 | cssvar.extensions
96 | Use language identifiers mentioned in this doc 97 | |
98 | File extensions in which IntelliSense will be enabled | 99 |string[] |
100 |
101 | 102 | [
103 | "css",
104 | "scss",
105 | "sass",
106 | "less",
107 | "postcss",
108 | "vue",
109 | "svelte",
110 | "astro",
111 | "ts",
112 | "tsx",
113 | "js",
114 | "jsx"
115 | ]
116 | 117 | |
118 |
121 | cssvar.themes
122 | Helps to bucket CSS variables based on themes used in any project 123 | |
124 |
125 | CSS Theme class names used in source files 126 | E.g. ["dark","dim"]
127 | |
128 | string[] |
129 |
130 | 131 | []
132 | 133 | |
134 |
137 | cssvar.excludeThemedVariables
138 | If true , hides duplicate theme variables from the list
139 | |
140 | Exclude themed variables to remove unnecessary duplicates | 141 |boolean |
142 |
143 | 144 | false
145 | 146 | |
147 |
150 | cssvar.disableSort
151 | Intellisense list won't be sorted 152 | |
153 | Disables default sorting applied by VSCode | 154 |boolean |
155 |
156 | 157 | false
158 | 159 | |
160 |
cssvar.enableColors |
163 | Enable VSCode's Color Representation feature when true |
164 | boolean |
165 |
166 | 167 | true
168 | 169 | |
170 |
cssvar.enableGotoDef |
173 | Enable VSCode's Goto Definition feature for CSS Variable | 174 |boolean |
175 |
176 | 177 | true
178 | 179 | |
180 |
cssvar.enableHover |
183 | Enable VScode's Hover IntelliSense feature for CSS Variables | 184 |boolean |
185 |
186 | 187 | true
188 | 189 | |
190 |
193 | cssvar.postcssSyntax
194 | Details for this can be read here: Customize Extension 195 | |
196 |
197 | Provides custom syntax parser for the mapped file extensions. 198 | E.g. {
199 | "sugarss": ["sss"]
200 | }
201 | |
202 | Record<string,string[] |
203 |
204 | 205 | {}
206 | 207 | |
208 |
211 | cssvar.postcssPlugins
212 | Provide PostCSS Plugins to support custom CSS features 213 | |
214 |
215 | E.g. 216 | ["postcss-nested"]
217 | Or
218 | [[
219 | "postcss-nested",
220 | {"unwrap": ["phone"]}
221 | ]]
222 | |
223 |
224 | string[]
225 | | [
226 | string,
227 | object
228 | ][] |
229 |
230 | 231 | []
232 | 233 | |
234 |
237 | cssvar.mode
238 | Enable/Disable CSS variable linting modes. 239 | |
240 |
241 | E.g. ["error", {
242 | ignore: [
243 | "--dynamic",
244 | "dy[nN].*?c$"
245 | ]
246 | }]
247 | |
248 | string
249 | | [
250 | string,
251 | {ignore: string[]}
252 | ] |
253 | 254 | "off"
255 | 256 | |
257 |
52 | Hell World 53 |
54 |