Skip to content

Commit 6ada34e

Browse files
authoredMay 28, 2024··
feat(cli): add validation for CSS-related files (#478)
1 parent 87af9a0 commit 6ada34e

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed
 

‎README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,12 @@ Add the following settings to your `.vscode/settings.json`:
146146
"xml",
147147
"gql",
148148
"graphql",
149-
"astro"
149+
"astro",
150+
"css",
151+
"less",
152+
"scss",
153+
"pcss",
154+
"postcss"
150155
]
151156
}
152157
```

‎src/cli/constants.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,12 @@ export const vscodeSettingsString = `
4949
"xml",
5050
"gql",
5151
"graphql",
52-
"astro"
52+
"astro",
53+
"css",
54+
"less",
55+
"scss",
56+
"pcss",
57+
"postcss"
5358
]
5459
`
5560

0 commit comments

Comments
 (0)
Please sign in to comment.