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
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ This setting is application scoped and changing the setting requires restarting
33
33
34
34
## Specifying Style Sheets
35
35
36
-
Remote and local style sheets with optional glob patterns can be specified in VS Code settings per workspace folder in `.vscode/settings.json` and will suggest for all configured languages within that workspace folder.
36
+
Remote and local style sheets with optional glob patterns can be specified in VS Code settings per workspace folder in `.vscode/settings.json` and will suggest in all configured languages within that workspace folder.
37
37
38
38
Glob patterns for local style sheets can have the following syntax:
39
39
@@ -42,13 +42,13 @@ Glob patterns for local style sheets can have the following syntax:
42
42
|`*`| zero or more characters in a path segment |
43
43
|`?`| one character in a path segment |
44
44
|`**`| any number of path segments, including none |
45
-
|`{}`| group conditions like `**/*.{ts,js}`|
45
+
|`{}`| group conditions like `**/*.{css,scss}`|
46
46
|`[]`| declare a range of characters like `[0-9]`|
47
47
|`[!]`| negate a range of characters like `[!0-9]`|
48
48
49
49
## Examples
50
50
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:
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:
52
52
53
53
**`.vscode/settings.json`**
54
54
@@ -84,15 +84,15 @@ and if you are using Bootstrap CDN with additional plain `css`:
84
84
85
85
### Lit
86
86
87
-
First `typescript` or `javascript` should be enabled in global settings depending on your needs:
87
+
First `typescript` or `javascript` should be enabled in global settings depending on your usage:
88
88
89
89
```json
90
90
{
91
-
"css.enabledLanguages": ["typescript"]
91
+
"css.enabledLanguages": ["html", "typescript"]
92
92
}
93
93
```
94
94
95
-
Your in file styles will be available for completion for that file. If you need to use some base styles everywhere you can specify as follows:
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:
96
96
97
97
```json
98
98
{
@@ -104,7 +104,7 @@ Your in file styles will be available for completion for that file. If you need
104
104
105
105
### Validate class selectors
106
106
107
-
Validates all `class` selectors in the active editor. Auto validation can also be configured in settings.
107
+
Validates all `class` selectors in the active editor. Auto validation can also be configured in extension settings globally or per workspace.
0 commit comments