diff --git a/README.md b/README.md index 9d90e50..3d52375 100644 --- a/README.md +++ b/README.md @@ -174,3 +174,19 @@ let foo (arg: list 'a) => switch arg { | [_] | [_, _, ..._] => failwith "" }; ``` + +## FAQ + +- How do I enable emmet in ReasonReact files? + +Add this in your `settings.json`: +```json +"emmet.includeLanguages": { + "reason": "javascriptreact" +} +``` + +Plus if it's not already there, consider adding: +```json +"emmet.triggerExpansionOnTab": true, +```