You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`**`| any number of path segments, including none |
45
+
|`{}`| group conditions like `**/*.{css,scss}`|
46
+
|`[]`| a range of characters like `[0-9]` or negate `[!0-9]`|
48
47
49
48
## Examples
50
49
51
-
Configuration depends on your layout of the project. The following most basic settings will suggest from all your `css` files in your project's `src` folder:
50
+
Configuration depends on your layout of the project. The following most basic setting will suggest from all your `css` files in your project's `src` folder:
52
51
53
52
**`.vscode/settings.json`**
54
53
@@ -58,7 +57,7 @@ Configuration depends on your layout of the project. The following most basic se
58
57
}
59
58
```
60
59
61
-
### Bootstrap
60
+
### [Bootstrap](https://getbootstrap.com/)
62
61
63
62
If you are using Bootstrap `npm` module with additional `scss` this can be a starting point:
64
63
@@ -82,17 +81,17 @@ and if you are using Bootstrap CDN with additional plain `css`:
82
81
}
83
82
```
84
83
85
-
### Lit
84
+
### [Lit](https://lit.dev/)
86
85
87
-
First `typescript` or `javascript` should be enabled in global settings depending on your usage:
86
+
First `typescript` or `javascript` should be enabled in global settings depending on your usage and VS Code should be restarted:
88
87
89
88
```json
90
89
{
91
90
"css.enabledLanguages": ["html", "typescript"]
92
91
}
93
92
```
94
93
95
-
Your in file styles will be available for completion for that file. If you need to use some base styles everywhere in your project, you can specify as follows:
94
+
Your in file [static styles](https://lit.dev/docs/components/styles/) will be available for completion for that file. If you need to use some base styles everywhere in your project, you can specify as follows:
0 commit comments