Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #13243 from justinrusso/feature/jsx_code_hints
Browse files Browse the repository at this point in the history
Add JavaScript code hinting in JSX files
  • Loading branch information
zaggino committed Mar 30, 2017
2 parents 349a458 + 7af7bc8 commit fba7428
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/extensions/default/JavaScriptCodeHints/HintUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ define(function (require, exports, module) {
var Acorn = require("node_modules/acorn/dist/acorn");

var LANGUAGE_ID = "javascript",
JSX_LANGUAGE_ID = "jsx",
HTML_LANGUAGE_ID = "html",
PHP_LANGUAGE_ID = "php",
SUPPORTED_LANGUAGES = [LANGUAGE_ID, HTML_LANGUAGE_ID, PHP_LANGUAGE_ID],
SUPPORTED_LANGUAGES = [LANGUAGE_ID, JSX_LANGUAGE_ID, HTML_LANGUAGE_ID, PHP_LANGUAGE_ID],
SINGLE_QUOTE = "'",
DOUBLE_QUOTE = "\"";

Expand Down

0 comments on commit fba7428

Please sign in to comment.