Is there a JSX formatter for sublime text?

后端 未结 7 1443
闹比i
闹比i 2020-12-23 03:04

I\'m using Sublime Text as a text editor.

There\'s a jsFormat for formatting javascript files but I can\'t find one for JSX.

How you guys deal with formattin

7条回答
  •  梦毁少年i
    2020-12-23 03:15

    the answer in the internet that always told you set 'e4x' to true, but sometimes, we have to set option of 'format_on_save_extensions' then add 'jsx' in array

    modify jsFormat.sublime-settings

    {
      "e4x": true,
      "format_on_save": true,
      "format_on_save_extensions": ["js", "json", "jsx"]
    }
    

提交回复
热议问题