Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable imports in ES6 displaying as "import ..." in PhpStorm

I'm currently struggling to work out how to turn this off, its small I know. But it bugs the hell out of me that every file I open I have to click the plus :O

What is in the ...

import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
import * as auth from '../actions/auth';
import Shell from '../components/Shell';

What it currently looks like

enter image description here

like image 970
Jamie Hutber Avatar asked Sep 19 '25 03:09

Jamie Hutber


1 Answers

Settings > Editor > General > Code Folding

Uncheck "JavaScript imports"

like image 183
sdgluck Avatar answered Sep 22 '25 04:09

sdgluck