https://github.com/mehradi-github/ref-react
https://github.com/mehradi-github/ref-react
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/mehradi-github/ref-react
- Owner: mehradi-github
- License: mit
- Created: 2023-08-26T06:45:37.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-10T18:21:12.000Z (almost 3 years ago)
- Last Synced: 2025-02-05T07:12:06.768Z (over 1 year ago)
- Language: JavaScript
- Size: 324 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Getting Started with Create React App
- [Getting Started with Create React App](#getting-started-with-create-react-app)
- [Emmet](#emmet)
- [Adding Emmet in Visual Studio Code](#adding-emmet-in-visual-studio-code)
## Emmet
[Emmet — the essential toolkit for web-developers](https://github.com/mehradi-github/ref-landingpage-photography#emmet--the-essential-toolkit-for-web-developers)
### Adding Emmet in Visual Studio Code
1. Press Ctrl + Shift + P (or Command + Shift + P on macOS).
2. Type user settings json.
3. Click on Preferences: Open User Settings (JSON)
```json
"emmet.triggerExpansionOnTab": true,
"files.associations": {
"*html": "html",
"*njk": "html"
},
"emmet.useInlineCompletions": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"typescript": "typescriptreact",
"vue-html": "html",
"vue": "html",
"razor": "html",
"plaintext": "pug",
"django-html": "html"
},
"emmet.showSuggestionsAsSnippets": true,
"emmet.showExpandedAbbreviation": "always",
```
For your current project only update the configuration in ".vscode/settings.json".