Reputation: 1236
I am using WebStorm to make React application.
Firstly, when I use JSX tag attribute, it automatically creates curly brace. How can I disable this option?
Secondly, when our source code was modified, many IDE shows us that this file is changed. In VSCode it's done like this:
but WebStorm is not. So I can't know whether this file has changed or not. How can I set this?
Upvotes: 0
Views: 497
Reputation: 165108
Firstly, when I use JSX tag attribute, it automatically creates curly brace. How can I disable this option?
See https://stackoverflow.com/a/46949738/783119 -- should explain the situation (so I do not repeat the same here)
Secondly, when our source code was modified, many IDE shows us that this file is changed.
Settings/Preferences
Editor | General | Editor Tabs
Mark modified tabs with asterisk
option.Upvotes: 2