Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vunguyentuan/vscode-postcss
VSCode extension that support PostCSS language & autocomplete
https://github.com/vunguyentuan/vscode-postcss
Last synced: about 1 month ago
JSON representation
VSCode extension that support PostCSS language & autocomplete
- Host: GitHub
- URL: https://github.com/vunguyentuan/vscode-postcss
- Owner: vunguyentuan
- License: mit
- Created: 2022-01-08T14:38:08.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-09-17T03:31:11.000Z (about 2 years ago)
- Last Synced: 2024-10-03T07:08:17.092Z (about 2 months ago)
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=vunguyentuan.vscode-postcss
- Size: 1.09 MB
- Stars: 46
- Watchers: 3
- Forks: 2
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![Banner](https://github.com/vunguyentuan/vscode-postcss/raw/master/banner.jpg)
> This extension is a mixed of two famous extensions [postcss-language](https://github.com/csstools/postcss-language.git) and [vscode-postcss-language](https://github.com/MhMadHamster/vscode-postcss-language).
## Installation
**[Install via the Visual Studio Code Marketplace →](https://marketplace.visualstudio.com/items?itemName=vunguyentuan.vscode-postcss)**
## Features
- Basic autocomplete
- Syntax highlighting
- Support color preview
- Play nicely with [CSS Variable Autocomplete](https://marketplace.visualstudio.com/items?itemName=vunguyentuan.vscode-css-variables) extension.## Support for Emmet
1. Open the command palette and select **Preferences: Open Settings (JSON)**
2. Add the following configuration:```json
{
"emmet.includeLanguages": {
"postcss": "css"
}
}
```## Disable validation
```
"postcss.validate": false
```## Future development
- Add real postcss language service server (currently using SASS language service with some tweaks)