Skip to content

Commit f5ad86f

Browse files
committed
update docs
1 parent 38e57ba commit f5ad86f

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to the extension will be documented in this file.
44

5-
## [2.0.0] - 2024-01-01
5+
## [2.0.0] - 2023-12-31
66

77
- Go to definition support.
88
- Ported to custom parser.

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,41 @@ Extension can be configured to support any language where it makes sense such as
5050

5151
This setting is application scoped and changing the setting requires restarting VS Code.
5252

53+
## Examples
54+
55+
Configuration depends on your layout of the project but some samples are below:
56+
57+
### Bootstrap
58+
59+
```json
60+
{
61+
"css.enabledLanguages": ["html"]
62+
}
63+
```
64+
65+
```json
66+
{
67+
"css.styleSheets": [
68+
"node_modules/bootstrap/dist/css/bootstrap.css",
69+
"src/**/*.css"
70+
]
71+
}
72+
```
73+
74+
### Lit
75+
76+
```json
77+
{
78+
"css.enabledLanguages": ["typescript"]
79+
}
80+
```
81+
82+
```json
83+
{
84+
"css.styleSheets": ["src/style.ts", "src/style.css"]
85+
}
86+
```
87+
5388
## Commands
5489

5590
### Validate selectors

0 commit comments

Comments
 (0)