Skip to content

Commit 4852e39

Browse files
committed
update doc
1 parent 1ac7e2b commit 4852e39

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This setting is application scoped and changing the setting requires restarting
3333

3434
## Specifying Style Sheets
3535

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.
3737

3838
Glob patterns for local style sheets can have the following syntax:
3939

@@ -42,13 +42,13 @@ Glob patterns for local style sheets can have the following syntax:
4242
| `*` | zero or more characters in a path segment |
4343
| `?` | one character in a path segment |
4444
| `**` | any number of path segments, including none |
45-
| `{}` | group conditions like `**​/*.{ts,js}` |
45+
| `{}` | group conditions like `**​/*.{css,scss}` |
4646
| `[]` | declare a range of characters like `[0-9]` |
4747
| `[!]` | negate a range of characters like `[!0-9]` |
4848

4949
## Examples
5050

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:
5252

5353
**`.vscode/settings.json`**
5454

@@ -84,15 +84,15 @@ and if you are using Bootstrap CDN with additional plain `css`:
8484

8585
### Lit
8686

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:
8888

8989
```json
9090
{
91-
"css.enabledLanguages": ["typescript"]
91+
"css.enabledLanguages": ["html", "typescript"]
9292
}
9393
```
9494

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:
9696

9797
```json
9898
{
@@ -104,7 +104,7 @@ Your in file styles will be available for completion for that file. If you need
104104

105105
### Validate class selectors
106106

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.
108108

109109
### Clear style sheets cache
110110

0 commit comments

Comments
 (0)