Skip to content

Commit 16e8619

Browse files
committed
update doc
1 parent 9fdb49b commit 16e8619

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

README.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,17 @@ Remote and local style sheets with optional glob patterns can be specified in VS
3737

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

40-
| Pattern | Matches |
41-
| ------- | ------------------------------------------- |
42-
| `*` | zero or more characters in a path segment |
43-
| `?` | one character in a path segment |
44-
| `**` | any number of path segments, including none |
45-
| `{}` | group conditions like `**​/*.{css,scss}` |
46-
| `[]` | declare a range of characters like `[0-9]` |
47-
| `[!]` | negate a range of characters like `[!0-9]` |
40+
| Pattern | Matches |
41+
| ------- | ----------------------------------------------------- |
42+
| `*` | zero or more characters in a path segment |
43+
| `?` | one character in a path segment |
44+
| `**` | 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]` |
4847

4948
## Examples
5049

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

5352
**`.vscode/settings.json`**
5453

@@ -58,7 +57,7 @@ Configuration depends on your layout of the project. The following most basic se
5857
}
5958
```
6059

61-
### Bootstrap
60+
### [Bootstrap](https://getbootstrap.com/)
6261

6362
If you are using Bootstrap `npm` module with additional `scss` this can be a starting point:
6463

@@ -82,17 +81,17 @@ and if you are using Bootstrap CDN with additional plain `css`:
8281
}
8382
```
8483

85-
### Lit
84+
### [Lit](https://lit.dev/)
8685

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

8988
```json
9089
{
9190
"css.enabledLanguages": ["html", "typescript"]
9291
}
9392
```
9493

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

9796
```json
9897
{

0 commit comments

Comments
 (0)