File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 22
33All 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.
Original file line number Diff line number Diff line change @@ -50,6 +50,41 @@ Extension can be configured to support any language where it makes sense such as
5050
5151This 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
You can’t perform that action at this time.
0 commit comments