Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bernardoamorim7/javafx-css-support-vscode
Get JavaFX CSS support in Visual Studio Code.
https://github.com/bernardoamorim7/javafx-css-support-vscode
java javafx javafx-17 vscode vscode-extension
Last synced: 9 days ago
JSON representation
Get JavaFX CSS support in Visual Studio Code.
- Host: GitHub
- URL: https://github.com/bernardoamorim7/javafx-css-support-vscode
- Owner: bernardoamorim7
- License: cc-by-sa-4.0
- Created: 2023-05-04T20:30:10.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-24T23:06:36.000Z (about 1 year ago)
- Last Synced: 2023-09-25T02:55:26.822Z (about 1 year ago)
- Topics: java, javafx, javafx-17, vscode, vscode-extension
- Homepage: https://marketplace.visualstudio.com/items?itemName=bernardoamorim7.javafx-css-support-vscode
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# JavaFX CSS Support for VS Code
Get JavaFX CSS support in Visual Studio Code.
Only JavaFX 17 is currently supported!The CSS properties were obtained using [@startball5](https://github.com/starball5)'s script, that he published [here](https://stackoverflow.com/a/75946319).
All credit goes to him! I only made it an extension for ease of use.---
### Disable vendorPrefix warning
To disable the vendorPrefix warning, add the following to your Workspace's settings.json:
```json
"css.lint.vendorPrefix": "ignore"
```---
### Add errors or warning to unknown Vendor Specific Properties
To add errors or warning to unknown properties, add the following to your Workspace's settings.json:
```json
"css.lint.unknownVendorSpecificProperties": "error"
```
or
```json
"css.lint.unknownVendorSpecificProperties": "warning"
```---
**Enjoy!**